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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.          iphase.c: Device driver for Interphase ATM PCI adapter cards 
  3.                     Author: Peter Wang  <pwang@iphase.com>            
  4.    Some fixes: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
  5.                    Interphase Corporation  <www.iphase.com>           
  6.                                Version: 1.0                           
  7. *******************************************************************************
  8.       
  9.       This software may be used and distributed according to the terms
  10.       of the GNU General Public License (GPL), incorporated herein by reference.
  11.       Drivers based on this skeleton fall under the GPL and must retain
  12.       the authorship (implicit copyright) notice.
  13.       This program is distributed in the hope that it will be useful, but
  14.       WITHOUT ANY WARRANTY; without even the implied warranty of
  15.       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16.       General Public License for more details.
  17.       
  18.       Modified from an incomplete driver for Interphase 5575 1KVC 1M card which 
  19.       was originally written by Monalisa Agrawal at UNH. Now this driver 
  20.       supports a variety of varients of Interphase ATM PCI (i)Chip adapter 
  21.       card family (See www.iphase.com/products/ClassSheet.cfm?ClassID=ATM) 
  22.       in terms of PHY type, the size of control memory and the size of 
  23.       packet memory. The followings are the change log and history:
  24.      
  25.           Bugfix the Mona's UBR driver.
  26.           Modify the basic memory allocation and dma logic.
  27.           Port the driver to the latest kernel from 2.0.46.
  28.           Complete the ABR logic of the driver, and added the ABR work-
  29.               around for the hardware anormalies.
  30.           Add the CBR support.
  31.   Add the flow control logic to the driver to allow rate-limit VC.
  32.           Add 4K VC support to the board with 512K control memory.
  33.           Add the support of all the variants of the Interphase ATM PCI 
  34.           (i)Chip adapter cards including x575 (155M OC3 and UTP155), x525
  35.           (25M UTP25) and x531 (DS3 and E3).
  36.           Add SMP support.
  37.       Support and updates available at: ftp://ftp.iphase.com/pub/atm
  38. *******************************************************************************/
  39. #ifdef IA_MODULE
  40. #define MODULE
  41. #endif
  42. #include <linux/version.h>
  43. #include <linux/module.h>  
  44. #include <linux/kernel.h>  
  45. #include <linux/mm.h>  
  46. #include <linux/pci.h>  
  47. #include <linux/errno.h>  
  48. #include <linux/atm.h>  
  49. #include <linux/atmdev.h>  
  50. #include <linux/sonet.h>  
  51. #include <linux/skbuff.h>  
  52. #include <linux/time.h>  
  53. #include <linux/sched.h> /* for xtime */  
  54. #include <linux/delay.h>  
  55. #include <linux/uio.h>  
  56. #include <linux/init.h>  
  57. #include <asm/system.h>  
  58. #include <asm/io.h>  
  59. #include <asm/atomic.h>  
  60. #include <asm/uaccess.h>  
  61. #include <asm/string.h>  
  62. #include <asm/byteorder.h>  
  63. #include <linux/vmalloc.h>  
  64. #include "iphase.h"   
  65. #include "suni.h"   
  66. #define swap(x) (((x & 0xff) << 8) | ((x & 0xff00) >> 8))  
  67. struct suni_priv {
  68.         struct k_sonet_stats sonet_stats; /* link diagnostics */
  69.         unsigned char loop_mode;        /* loopback mode */
  70.         struct atm_dev *dev;            /* device back-pointer */
  71.         struct suni_priv *next;         /* next SUNI */
  72. }; 
  73. #define PRIV(dev) ((struct suni_priv *) dev->phy_data)
  74. static unsigned char ia_phy_get(struct atm_dev *dev, unsigned long addr);
  75. static IADEV *ia_dev[8];
  76. static struct atm_dev *_ia_dev[8];
  77. static int iadev_count;
  78. static void ia_led_timer(unsigned long arg);
  79. static struct timer_list ia_timer = { function: ia_led_timer };
  80. struct atm_vcc *vcc_close_que[100];
  81. static int IA_TX_BUF = DFL_TX_BUFFERS, IA_TX_BUF_SZ = DFL_TX_BUF_SZ;
  82. static int IA_RX_BUF = DFL_RX_BUFFERS, IA_RX_BUF_SZ = DFL_RX_BUF_SZ;
  83. static u32 IADebugFlag = /* IF_IADBG_ERR | IF_IADBG_CBR| IF_IADBG_INIT_ADAPTER
  84.             |IF_IADBG_ABR | IF_IADBG_EVENT*/ 0; 
  85. #ifdef MODULE
  86. MODULE_PARM(IA_TX_BUF, "i");
  87. MODULE_PARM(IA_TX_BUF_SZ, "i");
  88. MODULE_PARM(IA_RX_BUF, "i");
  89. MODULE_PARM(IA_RX_BUF_SZ, "i");
  90. MODULE_PARM(IADebugFlag, "i");
  91. #endif
  92. MODULE_LICENSE("GPL");
  93. #if BITS_PER_LONG != 32
  94. #  error FIXME: this driver only works on 32-bit platforms
  95. #endif
  96. /**************************** IA_LIB **********************************/
  97. static void ia_init_rtn_q (IARTN_Q *que) 
  98.    que->next = NULL; 
  99.    que->tail = NULL; 
  100. }
  101. static void ia_enque_head_rtn_q (IARTN_Q *que, IARTN_Q * data) 
  102. {
  103.    data->next = NULL;
  104.    if (que->next == NULL) 
  105.       que->next = que->tail = data;
  106.    else {
  107.       data->next = que->next;
  108.       que->next = data;
  109.    } 
  110.    return;
  111. }
  112. static int ia_enque_rtn_q (IARTN_Q *que, struct desc_tbl_t data) {
  113.    IARTN_Q *entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
  114.    if (!entry) return -1;
  115.    entry->data = data;
  116.    entry->next = NULL;
  117.    if (que->next == NULL) 
  118.       que->next = que->tail = entry;
  119.    else {
  120.       que->tail->next = entry;
  121.       que->tail = que->tail->next;
  122.    }      
  123.    return 1;
  124. }
  125. static IARTN_Q * ia_deque_rtn_q (IARTN_Q *que) {
  126.    IARTN_Q *tmpdata;
  127.    if (que->next == NULL)
  128.       return NULL;
  129.    tmpdata = que->next;
  130.    if ( que->next == que->tail)  
  131.       que->next = que->tail = NULL;
  132.    else 
  133.       que->next = que->next->next;
  134.    return tmpdata;
  135. }
  136. static void ia_hack_tcq(IADEV *dev) {
  137.   u_short  desc1;
  138.   u_short tcq_wr;
  139.   struct ia_vcc         *iavcc_r = NULL; 
  140.   extern void desc_dbg(IADEV *iadev);
  141.   tcq_wr = readl(dev->seg_reg+TCQ_WR_PTR) & 0xffff;
  142.   while (dev->host_tcq_wr != tcq_wr) {
  143.      desc1 = *(u_short *)(dev->seg_ram + dev->host_tcq_wr);
  144.      if (!desc1) ;
  145.      else if (!dev->desc_tbl[desc1 -1].timestamp) {
  146.         IF_ABR(printk(" Desc %d is reset at %ldn", desc1 -1, jiffies);)
  147.         *(u_short *) (dev->seg_ram + dev->host_tcq_wr) = 0;
  148.      }                                 
  149.      else if (dev->desc_tbl[desc1 -1].timestamp) {
  150.         if (!(iavcc_r = dev->desc_tbl[desc1 -1].iavcc)) { 
  151.            printk("IA: Fatal err in get_descn");
  152.            continue;
  153.         }
  154.         iavcc_r->vc_desc_cnt--;
  155.         dev->desc_tbl[desc1 -1].timestamp = 0;
  156.         IF_EVENT(printk("ia_hack: return_q skb = 0x%x desc = %dn", 
  157.                                    (u32)dev->desc_tbl[desc1 -1].txskb, desc1);)
  158.         if (iavcc_r->pcr < dev->rate_limit) {
  159.            IA_SKB_STATE (dev->desc_tbl[desc1-1].txskb) |= IA_TX_DONE;
  160.            if (ia_enque_rtn_q(&dev->tx_return_q, dev->desc_tbl[desc1 -1]) < 0)
  161.               printk("ia_hack_tcq: No memory availablen");
  162.         } 
  163.         dev->desc_tbl[desc1 -1].iavcc = NULL;
  164.         dev->desc_tbl[desc1 -1].txskb = NULL;
  165.      }
  166.      dev->host_tcq_wr += 2;
  167.      if (dev->host_tcq_wr > dev->ffL.tcq_ed) 
  168.         dev->host_tcq_wr = dev->ffL.tcq_st;
  169.   }
  170. } /* ia_hack_tcq */
  171. static u16 get_desc (IADEV *dev, struct ia_vcc *iavcc) {
  172.   u_short  desc_num, i;
  173.   struct sk_buff        *skb;
  174.   struct ia_vcc         *iavcc_r = NULL; 
  175.   unsigned long delta;
  176.   static unsigned long timer = 0;
  177.   int ltimeout;
  178.   extern void desc_dbg(IADEV *iadev);
  179.   ia_hack_tcq (dev);
  180.   if(((jiffies - timer)>50)||((dev->ffL.tcq_rd==dev->host_tcq_wr))){      
  181.      timer = jiffies; 
  182.      i=0;
  183.      while (i < dev->num_tx_desc) {
  184.         if (!dev->desc_tbl[i].timestamp) {
  185.            i++;
  186.            continue;
  187.         }
  188.         ltimeout = dev->desc_tbl[i].iavcc->ltimeout; 
  189.         delta = jiffies - dev->desc_tbl[i].timestamp;
  190.         if (delta >= ltimeout) {
  191.            IF_ABR(printk("RECOVER run!! desc_tbl %d = %d  delta = %ld,  time = %ldn", i,dev->desc_tbl[i].timestamp, delta, jiffies);)
  192.            if (dev->ffL.tcq_rd == dev->ffL.tcq_st) 
  193.               dev->ffL.tcq_rd =  dev->ffL.tcq_ed;
  194.            else 
  195.               dev->ffL.tcq_rd -= 2;
  196.            *(u_short *)(dev->seg_ram + dev->ffL.tcq_rd) = i+1;
  197.            if (!(skb = dev->desc_tbl[i].txskb) || 
  198.                           !(iavcc_r = dev->desc_tbl[i].iavcc))
  199.               printk("Fatal err, desc table vcc or skb is NULLn");
  200.            else 
  201.               iavcc_r->vc_desc_cnt--;
  202.            dev->desc_tbl[i].timestamp = 0;
  203.            dev->desc_tbl[i].iavcc = NULL;
  204.            dev->desc_tbl[i].txskb = NULL;
  205.         }
  206.         i++;
  207.      } /* while */
  208.   }
  209.   if (dev->ffL.tcq_rd == dev->host_tcq_wr) 
  210.      return 0xFFFF;
  211.     
  212.   /* Get the next available descriptor number from TCQ */
  213.   desc_num = *(u_short *)(dev->seg_ram + dev->ffL.tcq_rd);
  214.   while (!desc_num || (dev->desc_tbl[desc_num -1]).timestamp) {
  215.      dev->ffL.tcq_rd += 2;
  216.      if (dev->ffL.tcq_rd > dev->ffL.tcq_ed) 
  217.      dev->ffL.tcq_rd = dev->ffL.tcq_st;
  218.      if (dev->ffL.tcq_rd == dev->host_tcq_wr) 
  219.         return 0xFFFF; 
  220.      desc_num = *(u_short *)(dev->seg_ram + dev->ffL.tcq_rd);
  221.   }
  222.   /* get system time */
  223.   dev->desc_tbl[desc_num -1].timestamp = jiffies;
  224.   return desc_num;
  225. }
  226. static void clear_lockup (struct atm_vcc *vcc, IADEV *dev) {
  227.   u_char           foundLockUp;
  228.   vcstatus_t *vcstatus;
  229.   u_short               *shd_tbl;
  230.   u_short               tempCellSlot, tempFract;
  231.   struct main_vc *abr_vc = (struct main_vc *)dev->MAIN_VC_TABLE_ADDR;
  232.   struct ext_vc *eabr_vc = (struct ext_vc *)dev->EXT_VC_TABLE_ADDR;
  233.   u_int  i;
  234.   if (vcc->qos.txtp.traffic_class == ATM_ABR) {
  235.      vcstatus = (vcstatus_t *) &(dev->testTable[vcc->vci]->vc_status);
  236.      vcstatus->cnt++;
  237.      foundLockUp = 0;
  238.      if( vcstatus->cnt == 0x05 ) {
  239.         abr_vc += vcc->vci;
  240. eabr_vc += vcc->vci;
  241. if( eabr_vc->last_desc ) {
  242.    if( (abr_vc->status & 0x07) == ABR_STATE /* 0x2 */ ) {
  243.               /* Wait for 10 Micro sec */
  244.               udelay(10);
  245.       if ((eabr_vc->last_desc)&&((abr_vc->status & 0x07)==ABR_STATE))
  246.  foundLockUp = 1;
  247.            }
  248.    else {
  249.       tempCellSlot = abr_vc->last_cell_slot;
  250.               tempFract    = abr_vc->fraction;
  251.               if((tempCellSlot == dev->testTable[vcc->vci]->lastTime)
  252.                          && (tempFract == dev->testTable[vcc->vci]->fract))
  253.          foundLockUp = 1;      
  254.               dev->testTable[vcc->vci]->lastTime = tempCellSlot;   
  255.               dev->testTable[vcc->vci]->fract = tempFract; 
  256.    }      
  257.         } /* last descriptor */      
  258.         vcstatus->cnt = 0;     
  259.      } /* vcstatus->cnt */
  260.      if (foundLockUp) {
  261.         IF_ABR(printk("LOCK UP foundn");) 
  262. writew(0xFFFD, dev->seg_reg+MODE_REG_0);
  263.         /* Wait for 10 Micro sec */
  264.         udelay(10); 
  265.         abr_vc->status &= 0xFFF8;
  266.         abr_vc->status |= 0x0001;  /* state is idle */
  267. shd_tbl = (u_short *)dev->ABR_SCHED_TABLE_ADDR;                
  268. for( i = 0; ((i < dev->num_vc) && (shd_tbl[i])); i++ );
  269. if (i < dev->num_vc)
  270.            shd_tbl[i] = vcc->vci;
  271.         else
  272.            IF_ERR(printk("ABR Seg. may not continue on VC %xn",vcc->vci);)
  273.         writew(T_ONLINE, dev->seg_reg+MODE_REG_0);
  274.         writew(~(TRANSMIT_DONE|TCQ_NOT_EMPTY), dev->seg_reg+SEG_MASK_REG);
  275.         writew(TRANSMIT_DONE, dev->seg_reg+SEG_INTR_STATUS_REG);       
  276. vcstatus->cnt = 0;
  277.      } /* foundLockUp */
  278.   } /* if an ABR VC */
  279. }
  280.  
  281. /*
  282. ** Conversion of 24-bit cellrate (cells/sec) to 16-bit floating point format.
  283. **
  284. **  +----+----+------------------+-------------------------------+
  285. **  |  R | NZ |  5-bit exponent  |        9-bit mantissa         |
  286. **  +----+----+------------------+-------------------------------+
  287. ** 
  288. **    R = reserverd (written as 0)
  289. **    NZ = 0 if 0 cells/sec; 1 otherwise
  290. **
  291. **    if NZ = 1, rate = 1.mmmmmmmmm x 2^(eeeee) cells/sec
  292. */
  293. static u16
  294. cellrate_to_float(u32 cr)
  295. {
  296. #define NZ  0x4000
  297. #define M_BITS 9 /* Number of bits in mantissa */
  298. #define E_BITS 5 /* Number of bits in exponent */
  299. #define M_MASK 0x1ff
  300. #define E_MASK 0x1f
  301.   u16   flot;
  302.   u32 tmp = cr & 0x00ffffff;
  303.   int  i   = 0;
  304.   if (cr == 0)
  305.      return 0;
  306.   while (tmp != 1) {
  307.      tmp >>= 1;
  308.      i++;
  309.   }
  310.   if (i == M_BITS)
  311.      flot = NZ | (i << M_BITS) | (cr & M_MASK);
  312.   else if (i < M_BITS)
  313.      flot = NZ | (i << M_BITS) | ((cr << (M_BITS - i)) & M_MASK);
  314.   else
  315.      flot = NZ | (i << M_BITS) | ((cr >> (i - M_BITS)) & M_MASK);
  316.   return flot;
  317. }
  318. #if 0
  319. /*
  320. ** Conversion of 16-bit floating point format to 24-bit cellrate (cells/sec).
  321. */
  322. static u32
  323. float_to_cellrate(u16 rate)
  324. {
  325.   u32   exp, mantissa, cps;
  326.   if ((rate & NZ) == 0)
  327.      return 0;
  328.   exp = (rate >> M_BITS) & E_MASK;
  329.   mantissa = rate & M_MASK;
  330.   if (exp == 0)
  331.      return 1;
  332.   cps = (1 << M_BITS) | mantissa;
  333.   if (exp == M_BITS)
  334.      cps = cps;
  335.   else if (exp > M_BITS)
  336.      cps <<= (exp - M_BITS);
  337.   else
  338.      cps >>= (M_BITS - exp);
  339.   return cps;
  340. }
  341. #endif 
  342. static void init_abr_vc (IADEV *dev, srv_cls_param_t *srv_p) {
  343.   srv_p->class_type = ATM_ABR;
  344.   srv_p->pcr        = dev->LineRate;
  345.   srv_p->mcr        = 0;
  346.   srv_p->icr        = 0x055cb7;
  347.   srv_p->tbe        = 0xffffff;
  348.   srv_p->frtt       = 0x3a;
  349.   srv_p->rif        = 0xf;
  350.   srv_p->rdf        = 0xb;
  351.   srv_p->nrm        = 0x4;
  352.   srv_p->trm        = 0x7;
  353.   srv_p->cdf        = 0x3;
  354.   srv_p->adtf       = 50;
  355. }
  356. static int
  357. ia_open_abr_vc(IADEV *dev, srv_cls_param_t *srv_p, 
  358.                                                 struct atm_vcc *vcc, u8 flag)
  359. {
  360.   f_vc_abr_entry  *f_abr_vc;
  361.   r_vc_abr_entry  *r_abr_vc;
  362.   u32 icr;
  363.   u8 trm, nrm, crm;
  364.   u16 adtf, air, *ptr16;
  365.   f_abr_vc =(f_vc_abr_entry *)dev->MAIN_VC_TABLE_ADDR;
  366.   f_abr_vc += vcc->vci;       
  367.   switch (flag) {
  368.      case 1: /* FFRED initialization */
  369. #if 0  /* sanity check */
  370.        if (srv_p->pcr == 0)
  371.           return INVALID_PCR;
  372.        if (srv_p->pcr > dev->LineRate)
  373.           srv_p->pcr = dev->LineRate;
  374.        if ((srv_p->mcr + dev->sum_mcr) > dev->LineRate)
  375.   return MCR_UNAVAILABLE;
  376.        if (srv_p->mcr > srv_p->pcr)
  377.   return INVALID_MCR;
  378.        if (!(srv_p->icr))
  379.   srv_p->icr = srv_p->pcr;
  380.        if ((srv_p->icr < srv_p->mcr) || (srv_p->icr > srv_p->pcr))
  381.   return INVALID_ICR;
  382.        if ((srv_p->tbe < MIN_TBE) || (srv_p->tbe > MAX_TBE))
  383.   return INVALID_TBE;
  384.        if ((srv_p->frtt < MIN_FRTT) || (srv_p->frtt > MAX_FRTT))
  385.   return INVALID_FRTT;
  386.        if (srv_p->nrm > MAX_NRM)
  387.   return INVALID_NRM;
  388.        if (srv_p->trm > MAX_TRM)
  389.   return INVALID_TRM;
  390.        if (srv_p->adtf > MAX_ADTF)
  391.           return INVALID_ADTF;
  392.        else if (srv_p->adtf == 0)
  393.   srv_p->adtf = 1;
  394.        if (srv_p->cdf > MAX_CDF)
  395.   return INVALID_CDF;
  396.        if (srv_p->rif > MAX_RIF)
  397.   return INVALID_RIF;
  398.        if (srv_p->rdf > MAX_RDF)
  399.   return INVALID_RDF;
  400. #endif
  401.        memset ((caddr_t)f_abr_vc, 0, sizeof(*f_abr_vc));
  402.        f_abr_vc->f_vc_type = ABR;
  403.        nrm = 2 << srv_p->nrm;     /* (2 ** (srv_p->nrm +1)) */
  404.           /* i.e 2**n = 2 << (n-1) */
  405.        f_abr_vc->f_nrm = nrm << 8 | nrm;
  406.        trm = 100000/(2 << (16 - srv_p->trm));
  407.        if ( trm == 0) trm = 1;
  408.        f_abr_vc->f_nrmexp =(((srv_p->nrm +1) & 0x0f) << 12)|(MRM << 8) | trm;
  409.        crm = srv_p->tbe / nrm;
  410.        if (crm == 0) crm = 1;
  411.        f_abr_vc->f_crm = crm & 0xff;
  412.        f_abr_vc->f_pcr = cellrate_to_float(srv_p->pcr);
  413.        icr = MIN( srv_p->icr, (srv_p->tbe > srv_p->frtt) ?
  414. ((srv_p->tbe/srv_p->frtt)*1000000) :
  415. (1000000/(srv_p->frtt/srv_p->tbe)));
  416.        f_abr_vc->f_icr = cellrate_to_float(icr);
  417.        adtf = (10000 * srv_p->adtf)/8192;
  418.        if (adtf == 0) adtf = 1; 
  419.        f_abr_vc->f_cdf = ((7 - srv_p->cdf) << 12 | adtf) & 0xfff;
  420.        f_abr_vc->f_mcr = cellrate_to_float(srv_p->mcr);
  421.        f_abr_vc->f_acr = f_abr_vc->f_icr;
  422.        f_abr_vc->f_status = 0x0042;
  423.        break;
  424.     case 0: /* RFRED initialization */
  425.        ptr16 = (u_short *)(dev->reass_ram + REASS_TABLE*dev->memSize); 
  426.        *(ptr16 + vcc->vci) = NO_AAL5_PKT | REASS_ABR;
  427.        r_abr_vc = (r_vc_abr_entry*)(dev->reass_ram+ABR_VC_TABLE*dev->memSize);
  428.        r_abr_vc += vcc->vci;
  429.        r_abr_vc->r_status_rdf = (15 - srv_p->rdf) & 0x000f;
  430.        air = srv_p->pcr << (15 - srv_p->rif);
  431.        if (air == 0) air = 1;
  432.        r_abr_vc->r_air = cellrate_to_float(air);
  433.        dev->testTable[vcc->vci]->vc_status = VC_ACTIVE | VC_ABR;
  434.        dev->sum_mcr    += srv_p->mcr;
  435.        dev->n_abr++;
  436.        break;
  437.     default:
  438.        break;
  439.   }
  440.   return 0;
  441. }
  442. static int ia_cbr_setup (IADEV *dev, struct atm_vcc *vcc) {
  443.    u32 rateLow=0, rateHigh, rate;
  444.    int entries;
  445.    struct ia_vcc *ia_vcc;
  446.    int   idealSlot =0, testSlot, toBeAssigned, inc;
  447.    u32   spacing;
  448.    u16  *SchedTbl, *TstSchedTbl;
  449.    u16  cbrVC, vcIndex;
  450.    u32   fracSlot    = 0;
  451.    u32   sp_mod      = 0;
  452.    u32   sp_mod2     = 0;
  453.    /* IpAdjustTrafficParams */
  454.    if (vcc->qos.txtp.max_pcr <= 0) {
  455.       IF_ERR(printk("PCR for CBR not definedn");)
  456.       return -1;
  457.    }
  458.    rate = vcc->qos.txtp.max_pcr;
  459.    entries = rate / dev->Granularity;
  460.    IF_CBR(printk("CBR: CBR entries=0x%x for rate=0x%x & Gran=0x%xn",
  461.                                 entries, rate, dev->Granularity);)
  462.    if (entries < 1)
  463.       IF_CBR(printk("CBR: Bandwidth smaller than granularity of CBR tablen");) 
  464.    rateLow  =  entries * dev->Granularity;
  465.    rateHigh = (entries + 1) * dev->Granularity;
  466.    if (3*(rate - rateLow) > (rateHigh - rate))
  467.       entries++;
  468.    if (entries > dev->CbrRemEntries) {
  469.       IF_CBR(printk("CBR: Not enough bandwidth to support this PCR.n");)
  470.       IF_CBR(printk("Entries = 0x%x, CbrRemEntries = 0x%x.n",
  471.                                        entries, dev->CbrRemEntries);)
  472.       return -EBUSY;
  473.    }   
  474.    ia_vcc = INPH_IA_VCC(vcc);
  475.    ia_vcc->NumCbrEntry = entries; 
  476.    dev->sum_mcr += entries * dev->Granularity; 
  477.    /* IaFFrednInsertCbrSched */
  478.    // Starting at an arbitrary location, place the entries into the table
  479.    // as smoothly as possible
  480.    cbrVC   = 0;
  481.    spacing = dev->CbrTotEntries / entries;
  482.    sp_mod  = dev->CbrTotEntries % entries; // get modulo
  483.    toBeAssigned = entries;
  484.    fracSlot = 0;
  485.    vcIndex  = vcc->vci;
  486.    IF_CBR(printk("Vci=0x%x,Spacing=0x%x,Sp_mod=0x%xn",vcIndex,spacing,sp_mod);)
  487.    while (toBeAssigned)
  488.    {
  489.       // If this is the first time, start the table loading for this connection
  490.       // as close to entryPoint as possible.
  491.       if (toBeAssigned == entries)
  492.       {
  493.          idealSlot = dev->CbrEntryPt;
  494.          dev->CbrEntryPt += 2;    // Adding 2 helps to prevent clumping
  495.          if (dev->CbrEntryPt >= dev->CbrTotEntries) 
  496.             dev->CbrEntryPt -= dev->CbrTotEntries;// Wrap if necessary
  497.       } else {
  498.          idealSlot += (u32)(spacing + fracSlot); // Point to the next location
  499.          // in the table that would be  smoothest
  500.          fracSlot = ((sp_mod + sp_mod2) / entries);  // get new integer part
  501.          sp_mod2  = ((sp_mod + sp_mod2) % entries);  // calc new fractional part
  502.       }
  503.       if (idealSlot >= (int)dev->CbrTotEntries) 
  504.          idealSlot -= dev->CbrTotEntries;  
  505.       // Continuously check around this ideal value until a null
  506.       // location is encountered.
  507.       SchedTbl = (u16*)(dev->seg_ram+CBR_SCHED_TABLE*dev->memSize); 
  508.       inc = 0;
  509.       testSlot = idealSlot;
  510.       TstSchedTbl = (u16*)(SchedTbl+testSlot);  //set index and read in value
  511.       IF_CBR(printk("CBR Testslot 0x%x AT Location 0x%x, NumToAssign=%dn",
  512.                                 testSlot, (u32)TstSchedTbl,toBeAssigned);) 
  513.       memcpy((caddr_t)&cbrVC,(caddr_t)TstSchedTbl,sizeof(cbrVC));
  514.       while (cbrVC)  // If another VC at this location, we have to keep looking
  515.       {
  516.           inc++;
  517.           testSlot = idealSlot - inc;
  518.           if (testSlot < 0) { // Wrap if necessary
  519.              testSlot += dev->CbrTotEntries;
  520.              IF_CBR(printk("Testslot Wrap. STable Start=0x%x,Testslot=%dn",
  521.                                                        (u32)SchedTbl,testSlot);)
  522.           }
  523.           TstSchedTbl = (u16 *)(SchedTbl + testSlot);  // set table index
  524.           memcpy((caddr_t)&cbrVC,(caddr_t)TstSchedTbl,sizeof(cbrVC)); 
  525.           if (!cbrVC)
  526.              break;
  527.           testSlot = idealSlot + inc;
  528.           if (testSlot >= (int)dev->CbrTotEntries) { // Wrap if necessary
  529.              testSlot -= dev->CbrTotEntries;
  530.              IF_CBR(printk("TotCbrEntries=%d",dev->CbrTotEntries);)
  531.              IF_CBR(printk(" Testslot=0x%x ToBeAssgned=%dn", 
  532.                                             testSlot, toBeAssigned);)
  533.           } 
  534.           // set table index and read in value
  535.           TstSchedTbl = (u16*)(SchedTbl + testSlot);
  536.           IF_CBR(printk("Reading CBR Tbl from 0x%x, CbrVal=0x%x Iteration %dn",
  537.                           (u32)TstSchedTbl,cbrVC,inc);) 
  538.           memcpy((caddr_t)&cbrVC,(caddr_t)TstSchedTbl,sizeof(cbrVC));
  539.        } /* while */
  540.        // Move this VCI number into this location of the CBR Sched table.
  541.        memcpy((caddr_t)TstSchedTbl, (caddr_t)&vcIndex,sizeof(TstSchedTbl));
  542.        dev->CbrRemEntries--;
  543.        toBeAssigned--;
  544.    } /* while */ 
  545.    /* IaFFrednCbrEnable */
  546.    dev->NumEnabledCBR++;
  547.    if (dev->NumEnabledCBR == 1) {
  548.        writew((CBR_EN | UBR_EN | ABR_EN | (0x23 << 2)), dev->seg_reg+STPARMS);
  549.        IF_CBR(printk("CBR is enabledn");)
  550.    }
  551.    return 0;
  552. }
  553. static void ia_cbrVc_close (struct atm_vcc *vcc) {
  554.    IADEV *iadev;
  555.    u16 *SchedTbl, NullVci = 0;
  556.    u32 i, NumFound;
  557.    iadev = INPH_IA_DEV(vcc->dev);
  558.    iadev->NumEnabledCBR--;
  559.    SchedTbl = (u16*)(iadev->seg_ram+CBR_SCHED_TABLE*iadev->memSize);
  560.    if (iadev->NumEnabledCBR == 0) {
  561.       writew((UBR_EN | ABR_EN | (0x23 << 2)), iadev->seg_reg+STPARMS);
  562.       IF_CBR (printk("CBR support disabledn");)
  563.    }
  564.    NumFound = 0;
  565.    for (i=0; i < iadev->CbrTotEntries; i++)
  566.    {
  567.       if (*SchedTbl == vcc->vci) {
  568.          iadev->CbrRemEntries++;
  569.          *SchedTbl = NullVci;
  570.          IF_CBR(NumFound++;)
  571.       }
  572.       SchedTbl++;   
  573.    } 
  574.    IF_CBR(printk("Exit ia_cbrVc_close, NumRemoved=%dn",NumFound);)
  575. }
  576. static int ia_avail_descs(IADEV *iadev) {
  577.    int tmp = 0;
  578.    ia_hack_tcq(iadev);
  579.    if (iadev->host_tcq_wr >= iadev->ffL.tcq_rd)
  580.       tmp = (iadev->host_tcq_wr - iadev->ffL.tcq_rd) / 2;
  581.    else
  582.       tmp = (iadev->ffL.tcq_ed - iadev->ffL.tcq_rd + 2 + iadev->host_tcq_wr -
  583.                    iadev->ffL.tcq_st) / 2;
  584.    return tmp;
  585. }    
  586. static int ia_que_tx (IADEV *iadev) { 
  587.    struct sk_buff *skb;
  588.    int num_desc;
  589.    struct atm_vcc *vcc;
  590.    struct ia_vcc *iavcc;
  591.    static int ia_pkt_tx (struct atm_vcc *vcc, struct sk_buff *skb);
  592.    num_desc = ia_avail_descs(iadev);
  593.    while (num_desc && (skb = skb_dequeue(&iadev->tx_backlog))) {
  594.       if (!(vcc = ATM_SKB(skb)->vcc)) {
  595.          dev_kfree_skb_any(skb);
  596.          printk("ia_que_tx: Null vccn");
  597.          break;
  598.       }
  599.       if (!test_bit(ATM_VF_READY,&vcc->flags)) {
  600.          dev_kfree_skb_any(skb);
  601.          printk("Free the SKB on closed vci %d n", vcc->vci);
  602.          break;
  603.       }
  604.       iavcc = INPH_IA_VCC(vcc);
  605.       if (ia_pkt_tx (vcc, skb)) {
  606.          skb_queue_head(&iadev->tx_backlog, skb);
  607.       }
  608.       num_desc--;
  609.    }
  610.    return 0;
  611. }
  612. void ia_tx_poll (IADEV *iadev) {
  613.    struct atm_vcc *vcc = NULL;
  614.    struct sk_buff *skb = NULL, *skb1 = NULL;
  615.    struct ia_vcc *iavcc;
  616.    IARTN_Q *  rtne;
  617.    ia_hack_tcq(iadev);
  618.    while ( (rtne = ia_deque_rtn_q(&iadev->tx_return_q))) {
  619.        skb = rtne->data.txskb;
  620.        if (!skb) {
  621.            printk("ia_tx_poll: skb is nulln");
  622.            goto out;
  623.        }
  624.        vcc = ATM_SKB(skb)->vcc;
  625.        if (!vcc) {
  626.            printk("ia_tx_poll: vcc is nulln");
  627.            dev_kfree_skb_any(skb);
  628.    goto out;
  629.        }
  630.        iavcc = INPH_IA_VCC(vcc);
  631.        if (!iavcc) {
  632.            printk("ia_tx_poll: iavcc is nulln");
  633.            dev_kfree_skb_any(skb);
  634.    goto out;
  635.        }
  636.        skb1 = skb_dequeue(&iavcc->txing_skb);
  637.        while (skb1 && (skb1 != skb)) {
  638.           if (!(IA_SKB_STATE(skb1) & IA_TX_DONE)) {
  639.              printk("IA_tx_intr: Vci %d lost pkt!!!n", vcc->vci);
  640.           }
  641.           IF_ERR(printk("Release the SKB not matchn");)
  642.           if ((vcc->pop) && (skb1->len != 0))
  643.           {
  644.              vcc->pop(vcc, skb1);
  645.              IF_EVENT(printk("Tansmit Done - skb 0x%lx returnn",
  646.                                                           (long)skb1);)
  647.           }
  648.           else 
  649.              dev_kfree_skb_any(skb1);
  650.           skb1 = skb_dequeue(&iavcc->txing_skb);
  651.        }                                                        
  652.        if (!skb1) {
  653.           IF_EVENT(printk("IA: Vci %d - skb not found requedn",vcc->vci);)
  654.           ia_enque_head_rtn_q (&iadev->tx_return_q, rtne);
  655.           break;
  656.        }
  657.        if ((vcc->pop) && (skb->len != 0))
  658.        {
  659.           vcc->pop(vcc, skb);
  660.           IF_EVENT(printk("Tx Done - skb 0x%lx returnn",(long)skb);)
  661.        }
  662.        else 
  663.           dev_kfree_skb_any(skb);
  664.        kfree(rtne);
  665.     }
  666.     ia_que_tx(iadev);
  667. out:
  668.     return;
  669. }
  670. #if 0
  671. static void ia_eeprom_put (IADEV *iadev, u32 addr, u_short val)
  672. {
  673.         u32 t;
  674. int i;
  675. /*
  676.  * Issue a command to enable writes to the NOVRAM
  677.  */
  678. NVRAM_CMD (EXTEND + EWEN);
  679. NVRAM_CLR_CE;
  680. /*
  681.  * issue the write command
  682.  */
  683. NVRAM_CMD(IAWRITE + addr);
  684. /* 
  685.  * Send the data, starting with D15, then D14, and so on for 16 bits
  686.  */
  687. for (i=15; i>=0; i--) {
  688. NVRAM_CLKOUT (val & 0x8000);
  689. val <<= 1;
  690. }
  691. NVRAM_CLR_CE;
  692. CFG_OR(NVCE);
  693. t = readl(iadev->reg+IPHASE5575_EEPROM_ACCESS); 
  694. while (!(t & NVDO))
  695. t = readl(iadev->reg+IPHASE5575_EEPROM_ACCESS); 
  696. NVRAM_CLR_CE;
  697. /*
  698.  * disable writes again
  699.  */
  700. NVRAM_CMD(EXTEND + EWDS)
  701. NVRAM_CLR_CE;
  702. CFG_AND(~NVDI);
  703. }
  704. #endif
  705. static u16 ia_eeprom_get (IADEV *iadev, u32 addr)
  706. {
  707. u_short val;
  708.         u32 t;
  709. int i;
  710. /*
  711.  * Read the first bit that was clocked with the falling edge of the
  712.  * the last command data clock
  713.  */
  714. NVRAM_CMD(IAREAD + addr);
  715. /*
  716.  * Now read the rest of the bits, the next bit read is D14, then D13,
  717.  * and so on.
  718.  */
  719. val = 0;
  720. for (i=15; i>=0; i--) {
  721. NVRAM_CLKIN(t);
  722. val |= (t << i);
  723. }
  724. NVRAM_CLR_CE;
  725. CFG_AND(~NVDI);
  726. return val;
  727. }
  728. static void ia_hw_type(IADEV *iadev) {
  729.    u_short memType = ia_eeprom_get(iadev, 25);   
  730.    iadev->memType = memType;
  731.    if ((memType & MEM_SIZE_MASK) == MEM_SIZE_1M) {
  732.       iadev->num_tx_desc = IA_TX_BUF;
  733.       iadev->tx_buf_sz = IA_TX_BUF_SZ;
  734.       iadev->num_rx_desc = IA_RX_BUF;
  735.       iadev->rx_buf_sz = IA_RX_BUF_SZ; 
  736.    } else if ((memType & MEM_SIZE_MASK) == MEM_SIZE_512K) {
  737.       if (IA_TX_BUF == DFL_TX_BUFFERS)
  738.         iadev->num_tx_desc = IA_TX_BUF / 2;
  739.       else 
  740.         iadev->num_tx_desc = IA_TX_BUF;
  741.       iadev->tx_buf_sz = IA_TX_BUF_SZ;
  742.       if (IA_RX_BUF == DFL_RX_BUFFERS)
  743.         iadev->num_rx_desc = IA_RX_BUF / 2;
  744.       else
  745.         iadev->num_rx_desc = IA_RX_BUF;
  746.       iadev->rx_buf_sz = IA_RX_BUF_SZ;
  747.    }
  748.    else {
  749.       if (IA_TX_BUF == DFL_TX_BUFFERS) 
  750.         iadev->num_tx_desc = IA_TX_BUF / 8;
  751.       else
  752.         iadev->num_tx_desc = IA_TX_BUF;
  753.       iadev->tx_buf_sz = IA_TX_BUF_SZ;
  754.       if (IA_RX_BUF == DFL_RX_BUFFERS)
  755.         iadev->num_rx_desc = IA_RX_BUF / 8;
  756.       else
  757.         iadev->num_rx_desc = IA_RX_BUF;
  758.       iadev->rx_buf_sz = IA_RX_BUF_SZ; 
  759.    } 
  760.    iadev->rx_pkt_ram = TX_PACKET_RAM + (iadev->num_tx_desc * iadev->tx_buf_sz); 
  761.    IF_INIT(printk("BUF: tx=%d,sz=%d rx=%d sz= %d rx_pkt_ram=%dn",
  762.          iadev->num_tx_desc, iadev->tx_buf_sz, iadev->num_rx_desc,
  763.          iadev->rx_buf_sz, iadev->rx_pkt_ram);)
  764. #if 0
  765.    if ((memType & FE_MASK) == FE_SINGLE_MODE) {
  766.       iadev->phy_type = PHY_OC3C_S;
  767.    else if ((memType & FE_MASK) == FE_UTP_OPTION)
  768.       iadev->phy_type = PHY_UTP155;
  769.    else
  770.      iadev->phy_type = PHY_OC3C_M;
  771. #endif
  772.    
  773.    iadev->phy_type = memType & FE_MASK;
  774.    IF_INIT(printk("memType = 0x%x iadev->phy_type = 0x%xn", 
  775.                                          memType,iadev->phy_type);)
  776.    if (iadev->phy_type == FE_25MBIT_PHY) 
  777.       iadev->LineRate = (u32)(((25600000/8)*26)/(27*53));
  778.    else if (iadev->phy_type == FE_DS3_PHY)
  779.       iadev->LineRate = (u32)(((44736000/8)*26)/(27*53));
  780.    else if (iadev->phy_type == FE_E3_PHY) 
  781.       iadev->LineRate = (u32)(((34368000/8)*26)/(27*53));
  782.    else
  783.        iadev->LineRate = (u32)(ATM_OC3_PCR);
  784.    IF_INIT(printk("iadev->LineRate = %d n", iadev->LineRate);)
  785. }
  786. static void IaFrontEndIntr(IADEV *iadev) {
  787.   volatile IA_SUNI *suni;
  788.   volatile ia_mb25_t *mb25;
  789.   volatile suni_pm7345_t *suni_pm7345;
  790.   u32 intr_status;
  791.   u_int frmr_intr;
  792.   if(iadev->phy_type & FE_25MBIT_PHY) {
  793.      mb25 = (ia_mb25_t*)iadev->phy;
  794.      iadev->carrier_detect =  Boolean(mb25->mb25_intr_status & MB25_IS_GSB);
  795.   } else if (iadev->phy_type & FE_DS3_PHY) {
  796.      suni_pm7345 = (suni_pm7345_t *)iadev->phy;
  797.      /* clear FRMR interrupts */
  798.      frmr_intr   = suni_pm7345->suni_ds3_frm_intr_stat; 
  799.      iadev->carrier_detect =  
  800.            Boolean(!(suni_pm7345->suni_ds3_frm_stat & SUNI_DS3_LOSV));
  801.   } else if (iadev->phy_type & FE_E3_PHY ) {
  802.      suni_pm7345 = (suni_pm7345_t *)iadev->phy;
  803.      frmr_intr   = suni_pm7345->suni_e3_frm_maint_intr_ind;
  804.      iadev->carrier_detect =
  805.            Boolean(!(suni_pm7345->suni_e3_frm_fram_intr_ind_stat&SUNI_E3_LOS));
  806.   }
  807.   else { 
  808.      suni = (IA_SUNI *)iadev->phy;
  809.      intr_status = suni->suni_rsop_status & 0xff;
  810.      iadev->carrier_detect = Boolean(!(suni->suni_rsop_status & SUNI_LOSV));
  811.   }
  812.   if (iadev->carrier_detect)
  813.     printk("IA: SUNI carrier detectedn");
  814.   else
  815.     printk("IA: SUNI carrier lost signaln"); 
  816.   return;
  817. }
  818. void ia_mb25_init (IADEV *iadev)
  819. {
  820.    volatile ia_mb25_t  *mb25 = (ia_mb25_t*)iadev->phy;
  821. #if 0
  822.    mb25->mb25_master_ctrl = MB25_MC_DRIC | MB25_MC_DREC | MB25_MC_ENABLED;
  823. #endif
  824.    mb25->mb25_master_ctrl = MB25_MC_DRIC | MB25_MC_DREC;
  825.    mb25->mb25_diag_control = 0;
  826.    /*
  827.     * Initialize carrier detect state
  828.     */
  829.    iadev->carrier_detect =  Boolean(mb25->mb25_intr_status & MB25_IS_GSB);
  830.    return;
  831. }                   
  832. void ia_suni_pm7345_init (IADEV *iadev)
  833. {
  834.    volatile suni_pm7345_t *suni_pm7345 = (suni_pm7345_t *)iadev->phy;
  835.    if (iadev->phy_type & FE_DS3_PHY)
  836.    {
  837.       iadev->carrier_detect = 
  838.           Boolean(!(suni_pm7345->suni_ds3_frm_stat & SUNI_DS3_LOSV)); 
  839.       suni_pm7345->suni_ds3_frm_intr_enbl = 0x17;
  840.       suni_pm7345->suni_ds3_frm_cfg = 1;
  841.       suni_pm7345->suni_ds3_tran_cfg = 1;
  842.       suni_pm7345->suni_config = 0;
  843.       suni_pm7345->suni_splr_cfg = 0;
  844.       suni_pm7345->suni_splt_cfg = 0;
  845.    }
  846.    else 
  847.    {
  848.       iadev->carrier_detect = 
  849.           Boolean(!(suni_pm7345->suni_e3_frm_fram_intr_ind_stat & SUNI_E3_LOS));
  850.       suni_pm7345->suni_e3_frm_fram_options = 0x4;
  851.       suni_pm7345->suni_e3_frm_maint_options = 0x20;
  852.       suni_pm7345->suni_e3_frm_fram_intr_enbl = 0x1d;
  853.       suni_pm7345->suni_e3_frm_maint_intr_enbl = 0x30;
  854.       suni_pm7345->suni_e3_tran_stat_diag_options = 0x0;
  855.       suni_pm7345->suni_e3_tran_fram_options = 0x1;
  856.       suni_pm7345->suni_config = SUNI_PM7345_E3ENBL;
  857.       suni_pm7345->suni_splr_cfg = 0x41;
  858.       suni_pm7345->suni_splt_cfg = 0x41;
  859.    } 
  860.    /*
  861.     * Enable RSOP loss of signal interrupt.
  862.     */
  863.    suni_pm7345->suni_intr_enbl = 0x28;
  864.  
  865.    /*
  866.     * Clear error counters
  867.     */
  868.    suni_pm7345->suni_id_reset = 0;
  869.    /*
  870.     * Clear "PMCTST" in master test register.
  871.     */
  872.    suni_pm7345->suni_master_test = 0;
  873.    suni_pm7345->suni_rxcp_ctrl = 0x2c;
  874.    suni_pm7345->suni_rxcp_fctrl = 0x81;
  875.  
  876.    suni_pm7345->suni_rxcp_idle_pat_h1 =
  877.     suni_pm7345->suni_rxcp_idle_pat_h2 =
  878.     suni_pm7345->suni_rxcp_idle_pat_h3 = 0;
  879.    suni_pm7345->suni_rxcp_idle_pat_h4 = 1;
  880.  
  881.    suni_pm7345->suni_rxcp_idle_mask_h1 = 0xff;
  882.    suni_pm7345->suni_rxcp_idle_mask_h2 = 0xff;
  883.    suni_pm7345->suni_rxcp_idle_mask_h3 = 0xff;
  884.    suni_pm7345->suni_rxcp_idle_mask_h4 = 0xfe;
  885.  
  886.    suni_pm7345->suni_rxcp_cell_pat_h1 =
  887.     suni_pm7345->suni_rxcp_cell_pat_h2 =
  888.     suni_pm7345->suni_rxcp_cell_pat_h3 = 0;
  889.    suni_pm7345->suni_rxcp_cell_pat_h4 = 1;
  890.  
  891.    suni_pm7345->suni_rxcp_cell_mask_h1 =
  892.     suni_pm7345->suni_rxcp_cell_mask_h2 =
  893.     suni_pm7345->suni_rxcp_cell_mask_h3 =
  894.     suni_pm7345->suni_rxcp_cell_mask_h4 = 0xff;
  895.  
  896.    suni_pm7345->suni_txcp_ctrl = 0xa4;
  897.    suni_pm7345->suni_txcp_intr_en_sts = 0x10;
  898.    suni_pm7345->suni_txcp_idle_pat_h5 = 0x55;
  899.  
  900.    suni_pm7345->suni_config &= ~(SUNI_PM7345_LLB |
  901.                                  SUNI_PM7345_CLB |
  902.                                  SUNI_PM7345_DLB |
  903.                                   SUNI_PM7345_PLB);
  904. #ifdef __SNMP__
  905.    suni_pm7345->suni_rxcp_intr_en_sts |= SUNI_OOCDE;
  906. #endif /* __SNMP__ */
  907.    return;
  908. }
  909. /***************************** IA_LIB END *****************************/
  910.     
  911. /* pwang_test debug utility */
  912. int tcnter = 0, rcnter = 0;
  913. void xdump( u_char*  cp, int  length, char*  prefix )
  914. {
  915.     int col, count;
  916.     u_char prntBuf[120];
  917.     u_char*  pBuf = prntBuf;
  918.     count = 0;
  919.     while(count < length){
  920.         pBuf += sprintf( pBuf, "%s", prefix );
  921.         for(col = 0;count + col < length && col < 16; col++){
  922.             if (col != 0 && (col % 4) == 0)
  923.                 pBuf += sprintf( pBuf, " " );
  924.             pBuf += sprintf( pBuf, "%02X ", cp[count + col] );
  925.         }
  926.         while(col++ < 16){      /* pad end of buffer with blanks */
  927.             if ((col % 4) == 0)
  928.                 sprintf( pBuf, " " );
  929.             pBuf += sprintf( pBuf, "   " );
  930.         }
  931.         pBuf += sprintf( pBuf, "  " );
  932.         for(col = 0;count + col < length && col < 16; col++){
  933.             if (isprint((int)cp[count + col]))
  934.                 pBuf += sprintf( pBuf, "%c", cp[count + col] );
  935.             else
  936.                 pBuf += sprintf( pBuf, "." );
  937.                 }
  938.         sprintf( pBuf, "n" );
  939.         // SPrint(prntBuf);
  940.         printk(prntBuf);
  941.         count += col;
  942.         pBuf = prntBuf;
  943.     }
  944. }  /* close xdump(... */
  945.   
  946. static struct atm_dev *ia_boards = NULL;  
  947.   
  948. #define ACTUAL_RAM_BASE 
  949. RAM_BASE*((iadev->mem)/(128 * 1024))  
  950. #define ACTUAL_SEG_RAM_BASE 
  951. IPHASE5575_FRAG_CONTROL_RAM_BASE*((iadev->mem)/(128 * 1024))  
  952. #define ACTUAL_REASS_RAM_BASE 
  953. IPHASE5575_REASS_CONTROL_RAM_BASE*((iadev->mem)/(128 * 1024))  
  954.   
  955.   
  956. /*-- some utilities and memory allocation stuff will come here -------------*/  
  957.   
  958. void desc_dbg(IADEV *iadev) {
  959.   u_short tcq_wr_ptr, tcq_st_ptr, tcq_ed_ptr;
  960.   u32 tmp, i;
  961.   // regval = readl((u32)ia_cmds->maddr);
  962.   tcq_wr_ptr =  readw(iadev->seg_reg+TCQ_WR_PTR);
  963.   printk("B_tcq_wr = 0x%x desc = %d last desc = %dn",
  964.                      tcq_wr_ptr, readw(iadev->seg_ram+tcq_wr_ptr),
  965.                      readw(iadev->seg_ram+tcq_wr_ptr-2));
  966.   printk(" host_tcq_wr = 0x%x  host_tcq_rd = 0x%x n",  iadev->host_tcq_wr, 
  967.                    iadev->ffL.tcq_rd);
  968.   tcq_st_ptr =  readw(iadev->seg_reg+TCQ_ST_ADR);
  969.   tcq_ed_ptr =  readw(iadev->seg_reg+TCQ_ED_ADR);
  970.   printk("tcq_st_ptr = 0x%x    tcq_ed_ptr = 0x%x n", tcq_st_ptr, tcq_ed_ptr);
  971.   i = 0;
  972.   while (tcq_st_ptr != tcq_ed_ptr) {
  973.       tmp = iadev->seg_ram+tcq_st_ptr;
  974.       printk("TCQ slot %d desc = %d  Addr = 0x%xn", i++, readw(tmp), tmp);
  975.       tcq_st_ptr += 2;
  976.   }
  977.   for(i=0; i <iadev->num_tx_desc; i++)
  978.       printk("Desc_tbl[%d] = %d n", i, iadev->desc_tbl[i].timestamp);
  979.   
  980.   
  981. /*----------------------------- Recieving side stuff --------------------------*/  
  982.  
  983. static void rx_excp_rcvd(struct atm_dev *dev)  
  984. {  
  985. #if 0 /* closing the receiving size will cause too many excp int */  
  986.   IADEV *iadev;  
  987.   u_short state;  
  988.   u_short excpq_rd_ptr;  
  989.   //u_short *ptr;  
  990.   int vci, error = 1;  
  991.   iadev = INPH_IA_DEV(dev);  
  992.   state = readl(iadev->reass_reg + STATE_REG) & 0xffff;  
  993.   while((state & EXCPQ_EMPTY) != EXCPQ_EMPTY)  
  994.   { printk("state = %x n", state); 
  995.         excpq_rd_ptr = readw(iadev->reass_reg + EXCP_Q_RD_PTR) & 0xffff;  
  996.  printk("state = %x excpq_rd_ptr = %x n", state, excpq_rd_ptr); 
  997.         if (excpq_rd_ptr == *(u16*)(iadev->reass_reg + EXCP_Q_WR_PTR))
  998.             IF_ERR(printk("excpq_rd_ptr is wrong!!!n");)
  999.         // TODO: update exception stat
  1000. vci = readw(iadev->reass_ram+excpq_rd_ptr);  
  1001. error = readw(iadev->reass_ram+excpq_rd_ptr+2) & 0x0007;  
  1002.         // pwang_test
  1003. excpq_rd_ptr += 4;  
  1004. if (excpq_rd_ptr > (readw(iadev->reass_reg + EXCP_Q_ED_ADR)& 0xffff))  
  1005.       excpq_rd_ptr = readw(iadev->reass_reg + EXCP_Q_ST_ADR)& 0xffff;
  1006. writew( excpq_rd_ptr, iadev->reass_reg + EXCP_Q_RD_PTR);  
  1007.         state = readl(iadev->reass_reg + STATE_REG) & 0xffff;  
  1008.   }  
  1009. #endif
  1010. }  
  1011.   
  1012. static void free_desc(struct atm_dev *dev, int desc)  
  1013. {  
  1014. IADEV *iadev;  
  1015. iadev = INPH_IA_DEV(dev);  
  1016.         writew(desc, iadev->reass_ram+iadev->rfL.fdq_wr); 
  1017. iadev->rfL.fdq_wr +=2;
  1018. if (iadev->rfL.fdq_wr > iadev->rfL.fdq_ed)
  1019. iadev->rfL.fdq_wr =  iadev->rfL.fdq_st;  
  1020. writew(iadev->rfL.fdq_wr, iadev->reass_reg+FREEQ_WR_PTR);  
  1021. }  
  1022.   
  1023.   
  1024. static int rx_pkt(struct atm_dev *dev)  
  1025. {  
  1026. IADEV *iadev;  
  1027. struct atm_vcc *vcc;  
  1028. unsigned short status;  
  1029. struct rx_buf_desc *buf_desc_ptr;  
  1030. int desc;   
  1031. struct dle* wr_ptr;  
  1032. int len;  
  1033. struct sk_buff *skb;  
  1034. u_int buf_addr, dma_addr;  
  1035. iadev = INPH_IA_DEV(dev);  
  1036. if (iadev->rfL.pcq_rd == (readw(iadev->reass_reg+PCQ_WR_PTR)&0xffff)) 
  1037. {  
  1038.         printk(KERN_ERR DEV_LABEL "(itf %d) Receive queue emptyn", dev->number);  
  1039.     return -EINVAL;  
  1040. }  
  1041. /* mask 1st 3 bits to get the actual descno. */  
  1042. desc = readw(iadev->reass_ram+iadev->rfL.pcq_rd) & 0x1fff;  
  1043.         IF_RX(printk("reass_ram = 0x%x iadev->rfL.pcq_rd = 0x%x desc = %dn", 
  1044.                                     iadev->reass_ram, iadev->rfL.pcq_rd, desc);
  1045.               printk(" pcq_wr_ptr = 0x%xn",
  1046.                                readw(iadev->reass_reg+PCQ_WR_PTR)&0xffff);)
  1047. /* update the read pointer  - maybe we shud do this in the end*/  
  1048. if ( iadev->rfL.pcq_rd== iadev->rfL.pcq_ed) 
  1049. iadev->rfL.pcq_rd = iadev->rfL.pcq_st;  
  1050. else  
  1051. iadev->rfL.pcq_rd += 2;
  1052. writew(iadev->rfL.pcq_rd, iadev->reass_reg+PCQ_RD_PTR);  
  1053.   
  1054. /* get the buffer desc entry.  
  1055. update stuff. - doesn't seem to be any update necessary  
  1056. */  
  1057. buf_desc_ptr = (struct rx_buf_desc *)iadev->RX_DESC_BASE_ADDR;
  1058. /* make the ptr point to the corresponding buffer desc entry */  
  1059. buf_desc_ptr += desc;   
  1060.         if (!desc || (desc > iadev->num_rx_desc) || 
  1061.                       ((buf_desc_ptr->vc_index & 0xffff) > iadev->num_vc)) { 
  1062.             free_desc(dev, desc);
  1063.             IF_ERR(printk("IA: bad descriptor desc = %d n", desc);)
  1064.             return -1;
  1065.         }
  1066. vcc = iadev->rx_open[buf_desc_ptr->vc_index & 0xffff];  
  1067. if (!vcc)  
  1068. {      
  1069.                 free_desc(dev, desc); 
  1070. printk("IA: null vcc, drop PDUn");  
  1071. return -1;  
  1072. }  
  1073.   
  1074.   
  1075. /* might want to check the status bits for errors */  
  1076. status = (u_short) (buf_desc_ptr->desc_mode);  
  1077. if (status & (RX_CER | RX_PTE | RX_OFL))  
  1078. {  
  1079.                 atomic_inc(&vcc->stats->rx_err);
  1080. IF_ERR(printk("IA: bad packet, dropping it");)  
  1081.                 if (status & RX_CER) { 
  1082.                     IF_ERR(printk(" cause: packet CRC errorn");)
  1083.                 }
  1084.                 else if (status & RX_PTE) {
  1085.                     IF_ERR(printk(" cause: packet time outn");)
  1086.                 }
  1087.                 else {
  1088.                     IF_ERR(printk(" cause: buffer over flown");)
  1089.                 }
  1090. goto out_free_desc;
  1091. }  
  1092.   
  1093. /*  
  1094. build DLE.   
  1095. */  
  1096.   
  1097. buf_addr = (buf_desc_ptr->buf_start_hi << 16) | buf_desc_ptr->buf_start_lo;  
  1098. dma_addr = (buf_desc_ptr->dma_start_hi << 16) | buf_desc_ptr->dma_start_lo;  
  1099. len = dma_addr - buf_addr;  
  1100.         if (len > iadev->rx_buf_sz) {
  1101.            printk("Over %d bytes sdu received, dropped!!!n", iadev->rx_buf_sz);
  1102.            atomic_inc(&vcc->stats->rx_err);
  1103.    goto out_free_desc;
  1104.         }
  1105.   
  1106. #if LINUX_VERSION_CODE >= 0x20312
  1107.         if (!(skb = atm_alloc_charge(vcc, len, GFP_ATOMIC))) {
  1108. #else
  1109.         if (atm_charge(vcc, atm_pdu2truesize(len))) {
  1110.    /* lets allocate an skb for now */  
  1111.    skb = alloc_skb(len, GFP_ATOMIC);  
  1112.    if (!skb)  
  1113.    {  
  1114.               IF_ERR(printk("can't allocate memory for recv, drop pkt!n");)  
  1115.               atomic_inc(&vcc->stats->rx_drop);
  1116.               atm_return(vcc, atm_pdu2truesize(len));
  1117.       goto out_free_desc;
  1118.    }  
  1119.         }
  1120.         else {
  1121.            IF_EVENT(printk("IA: Rx over the rx_quota %ldn", vcc->rx_quota);)
  1122. #endif
  1123.            if (vcc->vci < 32)
  1124.               printk("Drop control packetsn");
  1125.       goto out_free_desc;
  1126.         }
  1127. skb_put(skb,len);  
  1128.         // pwang_test
  1129.         ATM_SKB(skb)->vcc = vcc;
  1130.         ATM_SKB(skb)->iovcnt = 0;
  1131.         ATM_DESC(skb) = desc;        
  1132. skb_queue_tail(&iadev->rx_dma_q, skb);  
  1133. /* Build the DLE structure */  
  1134. wr_ptr = iadev->rx_dle_q.write;  
  1135. wr_ptr->sys_pkt_addr = virt_to_bus(skb->data);   
  1136. wr_ptr->local_pkt_addr = buf_addr;  
  1137. wr_ptr->bytes = len; /* We don't know this do we ?? */  
  1138. wr_ptr->mode = DMA_INT_ENABLE;  
  1139.   
  1140. /* shud take care of wrap around here too. */  
  1141.         if(++wr_ptr == iadev->rx_dle_q.end)
  1142.              wr_ptr = iadev->rx_dle_q.start;
  1143. iadev->rx_dle_q.write = wr_ptr;  
  1144. udelay(1);  
  1145. /* Increment transaction counter */  
  1146. writel(1, iadev->dma+IPHASE5575_RX_COUNTER);   
  1147. out: return 0;  
  1148. out_free_desc:
  1149.         free_desc(dev, desc);
  1150.         goto out;
  1151. }  
  1152.   
  1153. static void rx_intr(struct atm_dev *dev)  
  1154. {  
  1155.   IADEV *iadev;  
  1156.   u_short status;  
  1157.   u_short state, i;  
  1158.   
  1159.   iadev = INPH_IA_DEV(dev);  
  1160.   status = readl(iadev->reass_reg+REASS_INTR_STATUS_REG) & 0xffff;  
  1161.   IF_EVENT(printk("rx_intr: status = 0x%xn", status);)
  1162.   if (status & RX_PKT_RCVD)  
  1163.   {  
  1164. /* do something */  
  1165. /* Basically recvd an interrupt for receving a packet.  
  1166. A descriptor would have been written to the packet complete   
  1167. queue. Get all the descriptors and set up dma to move the   
  1168. packets till the packet complete queue is empty..  
  1169. */  
  1170. state = readl(iadev->reass_reg + STATE_REG) & 0xffff;  
  1171.         IF_EVENT(printk("Rx intr status: RX_PKT_RCVD %08xn", status);) 
  1172. while(!(state & PCQ_EMPTY))  
  1173. {  
  1174.              rx_pkt(dev);  
  1175.      state = readl(iadev->reass_reg + STATE_REG) & 0xffff;  
  1176. }  
  1177.         iadev->rxing = 1;
  1178.   }  
  1179.   if (status & RX_FREEQ_EMPT)  
  1180.   {   
  1181.      if (iadev->rxing) {
  1182.         iadev->rx_tmp_cnt = iadev->rx_pkt_cnt;
  1183.         iadev->rx_tmp_jif = jiffies; 
  1184.         iadev->rxing = 0;
  1185.      } 
  1186.      else if (((jiffies - iadev->rx_tmp_jif) > 50) && 
  1187.                ((iadev->rx_pkt_cnt - iadev->rx_tmp_cnt) == 0)) {
  1188.         for (i = 1; i <= iadev->num_rx_desc; i++)
  1189.                free_desc(dev, i);
  1190. printk("Test logic RUN!!!!n");
  1191.         writew( ~(RX_FREEQ_EMPT|RX_EXCP_RCVD),iadev->reass_reg+REASS_MASK_REG);
  1192.         iadev->rxing = 1;
  1193.      }
  1194.      IF_EVENT(printk("Rx intr status: RX_FREEQ_EMPT %08xn", status);)  
  1195.   }  
  1196.   if (status & RX_EXCP_RCVD)  
  1197.   {  
  1198. /* probably need to handle the exception queue also. */  
  1199. IF_EVENT(printk("Rx intr status: RX_EXCP_RCVD %08xn", status);)  
  1200. rx_excp_rcvd(dev);  
  1201.   }  
  1202.   if (status & RX_RAW_RCVD)  
  1203.   {  
  1204. /* need to handle the raw incoming cells. This deepnds on   
  1205. whether we have programmed to receive the raw cells or not.  
  1206. Else ignore. */  
  1207. IF_EVENT(printk("Rx intr status:  RX_RAW_RCVD %08xn", status);)  
  1208.   }  
  1209. }  
  1210.   
  1211.   
  1212. static void rx_dle_intr(struct atm_dev *dev)  
  1213. {  
  1214.   IADEV *iadev;  
  1215.   struct atm_vcc *vcc;   
  1216.   struct sk_buff *skb;  
  1217.   int desc;  
  1218.   u_short state;   
  1219.   struct dle *dle, *cur_dle;  
  1220.   u_int dle_lp;  
  1221.   int len;
  1222.   iadev = INPH_IA_DEV(dev);  
  1223.  
  1224.   /* free all the dles done, that is just update our own dle read pointer   
  1225. - do we really need to do this. Think not. */  
  1226.   /* DMA is done, just get all the recevie buffers from the rx dma queue  
  1227. and push them up to the higher layer protocol. Also free the desc  
  1228. associated with the buffer. */  
  1229.   dle = iadev->rx_dle_q.read;  
  1230.   dle_lp = readl(iadev->dma+IPHASE5575_RX_LIST_ADDR) & (sizeof(struct dle)*DLE_ENTRIES - 1);  
  1231.   cur_dle = (struct dle*)(iadev->rx_dle_q.start + (dle_lp >> 4));  
  1232.   while(dle != cur_dle)  
  1233.   {  
  1234.       /* free the DMAed skb */  
  1235.       skb = skb_dequeue(&iadev->rx_dma_q);  
  1236.       if (!skb)  
  1237.          goto INCR_DLE;
  1238.       desc = ATM_DESC(skb);
  1239.       free_desc(dev, desc);  
  1240.                
  1241.       if (!(len = skb->len))
  1242.       {  
  1243.           printk("rx_dle_intr: skb len 0n");  
  1244.   dev_kfree_skb_any(skb);  
  1245.       }  
  1246.       else  
  1247.       {  
  1248.           struct cpcs_trailer *trailer;
  1249.           u_short length;
  1250.           struct ia_vcc *ia_vcc;
  1251.           /* no VCC related housekeeping done as yet. lets see */  
  1252.           vcc = ATM_SKB(skb)->vcc;
  1253.   if (!vcc) {
  1254.       printk("IA: null vccn");  
  1255.               dev_kfree_skb_any(skb);
  1256.               goto INCR_DLE;
  1257.           }
  1258.           ia_vcc = INPH_IA_VCC(vcc);
  1259.           if (ia_vcc == NULL)
  1260.           {
  1261.              atomic_inc(&vcc->stats->rx_err);
  1262.              dev_kfree_skb_any(skb);
  1263. #if LINUX_VERSION_CODE >= 0x20312
  1264.              atm_return(vcc, atm_guess_pdu2truesize(len));
  1265. #else
  1266.              atm_return(vcc, atm_pdu2truesize(len));
  1267. #endif
  1268.              goto INCR_DLE;
  1269.            }
  1270.           // get real pkt length  pwang_test
  1271.           trailer = (struct cpcs_trailer*)((u_char *)skb->data +
  1272.                                  skb->len - sizeof(*trailer));
  1273.           length =  swap(trailer->length);
  1274.           if ((length > iadev->rx_buf_sz) || (length > 
  1275.                               (skb->len - sizeof(struct cpcs_trailer))))
  1276.           {
  1277.              atomic_inc(&vcc->stats->rx_err);
  1278.              IF_ERR(printk("rx_dle_intr: Bad  AAL5 trailer %d (skb len %d)", 
  1279.                                                             length, skb->len);)
  1280.              dev_kfree_skb_any(skb);
  1281. #if LINUX_VERSION_CODE >= 0x20312
  1282.              atm_return(vcc, atm_guess_pdu2truesize(len));
  1283. #else
  1284.              atm_return(vcc, atm_pdu2truesize(len));
  1285. #endif 
  1286.              goto INCR_DLE;
  1287.           }
  1288.           skb_trim(skb, length);
  1289.           
  1290.   /* Display the packet */  
  1291.   IF_RXPKT(printk("nDmad Recvd data: len = %d n", skb->len);  
  1292.           xdump(skb->data, skb->len, "RX: ");
  1293.           printk("n");)
  1294.   IF_RX(printk("rx_dle_intr: skb push");)  
  1295.   vcc->push(vcc,skb);  
  1296.   atomic_inc(&vcc->stats->rx);
  1297.           iadev->rx_pkt_cnt++;
  1298.       }  
  1299. INCR_DLE:
  1300.       if (++dle == iadev->rx_dle_q.end)  
  1301.        dle = iadev->rx_dle_q.start;  
  1302.   }  
  1303.   iadev->rx_dle_q.read = dle;  
  1304.   
  1305.   /* if the interrupts are masked because there were no free desc available,  
  1306. unmask them now. */ 
  1307.   if (!iadev->rxing) {
  1308.      state = readl(iadev->reass_reg + STATE_REG) & 0xffff;
  1309.      if (!(state & FREEQ_EMPTY)) {
  1310.         state = readl(iadev->reass_reg + REASS_MASK_REG) & 0xffff;
  1311.         writel(state & ~(RX_FREEQ_EMPT |/* RX_EXCP_RCVD |*/ RX_PKT_RCVD),
  1312.                                       iadev->reass_reg+REASS_MASK_REG);
  1313.         iadev->rxing++; 
  1314.      }
  1315.   }
  1316. }  
  1317.   
  1318.   
  1319. static int open_rx(struct atm_vcc *vcc)  
  1320. {  
  1321. IADEV *iadev;  
  1322. u_short *vc_table;  
  1323. u_short *reass_ptr;  
  1324. IF_EVENT(printk("iadev: open_rx %d.%dn", vcc->vpi, vcc->vci);)
  1325. if (vcc->qos.rxtp.traffic_class == ATM_NONE) return 0;    
  1326. iadev = INPH_IA_DEV(vcc->dev);  
  1327.         if (vcc->qos.rxtp.traffic_class == ATM_ABR) {  
  1328.            if (iadev->phy_type & FE_25MBIT_PHY) {
  1329.                printk("IA:  ABR not supportn");
  1330.                return -EINVAL; 
  1331.            }
  1332.         }
  1333. /* Make only this VCI in the vc table valid and let all   
  1334. others be invalid entries */  
  1335. vc_table = (u_short *)(iadev->reass_ram+RX_VC_TABLE*iadev->memSize);  
  1336. vc_table += vcc->vci;  
  1337. /* mask the last 6 bits and OR it with 3 for 1K VCs */  
  1338.         *vc_table = vcc->vci << 6;
  1339. /* Also keep a list of open rx vcs so that we can attach them with  
  1340. incoming PDUs later. */  
  1341. if ((vcc->qos.rxtp.traffic_class == ATM_ABR) || 
  1342.                                 (vcc->qos.txtp.traffic_class == ATM_ABR))  
  1343. {  
  1344.                 srv_cls_param_t srv_p;
  1345.                 init_abr_vc(iadev, &srv_p);
  1346.                 ia_open_abr_vc(iadev, &srv_p, vcc, 0);
  1347.         else {  /* for UBR  later may need to add CBR logic */
  1348.          reass_ptr = (u_short *)
  1349.                            (iadev->reass_ram+REASS_TABLE*iadev->memSize);
  1350.             reass_ptr += vcc->vci;  
  1351.             *reass_ptr = NO_AAL5_PKT;
  1352.         }
  1353. if (iadev->rx_open[vcc->vci])  
  1354. printk(KERN_CRIT DEV_LABEL "(itf %d): VCI %d already openn",  
  1355. vcc->dev->number, vcc->vci);  
  1356. iadev->rx_open[vcc->vci] = vcc;  
  1357. return 0;  
  1358. }  
  1359.   
  1360. static int rx_init(struct atm_dev *dev)  
  1361. {  
  1362. IADEV *iadev;  
  1363. struct rx_buf_desc *buf_desc_ptr;  
  1364. unsigned long rx_pkt_start = 0;  
  1365. u32 *odle_addr, *dle_addr;  
  1366. struct abr_vc_table  *abr_vc_table; 
  1367. u16 *vc_table;  
  1368. u16 *reass_table;  
  1369.         u16 *ptr16;
  1370. int i,j, vcsize_sel;  
  1371. u_short freeq_st_adr;  
  1372. u_short *freeq_start;  
  1373.   
  1374. iadev = INPH_IA_DEV(dev);  
  1375.   //    spin_lock_init(&iadev->rx_lock); 
  1376. /* I need to initialize the DLEs somewhere. Lets see what I   
  1377. need to do for this, hmmm...  
  1378. - allocate memory for 256 DLEs. make sure that it starts  
  1379. on a 4k byte address boundary. Program the start address   
  1380. in Receive List address register.  ..... to do for TX also  
  1381.    To make sure that it is a 4k byte boundary - allocate 8k and find   
  1382. 4k byte boundary within.  
  1383. ( (addr + (4k-1)) & ~(4k-1) )  
  1384. */   
  1385.   
  1386. /* allocate 8k bytes */  
  1387. odle_addr = kmalloc(2*sizeof(struct dle)*DLE_ENTRIES, GFP_KERNEL);  
  1388. if (!odle_addr)  
  1389. {  
  1390. printk(KERN_ERR DEV_LABEL "can't allocate DLEsn");  
  1391. return -ENOMEM;
  1392. }  
  1393. /* find 4k byte boundary within the 8k allocated */  
  1394. dle_addr = (u32*)( ((u32)odle_addr+(4096-1)) & ~(4096-1) );  
  1395. iadev->rx_dle_q.start = (struct dle*)dle_addr;  
  1396. iadev->rx_dle_q.read = iadev->rx_dle_q.start;  
  1397. iadev->rx_dle_q.write = iadev->rx_dle_q.start;  
  1398. iadev->rx_dle_q.end = (struct dle*)((u32)dle_addr+sizeof(struct dle)*DLE_ENTRIES);  
  1399. /* the end of the dle q points to the entry after the last  
  1400. DLE that can be used. */  
  1401.   
  1402. /* write the upper 20 bits of the start address to rx list address register */  
  1403. writel(virt_to_bus(dle_addr) & 0xfffff000, iadev->dma+IPHASE5575_RX_LIST_ADDR);  
  1404. IF_INIT(printk("Tx Dle list addr: 0x%08x value: 0x%0xn", 
  1405.                       (u32)(iadev->dma+IPHASE5575_TX_LIST_ADDR), 
  1406.                       *(u32*)(iadev->dma+IPHASE5575_TX_LIST_ADDR));  
  1407. printk("Rx Dle list addr: 0x%08x value: 0x%0xn", 
  1408.                       (u32)(iadev->dma+IPHASE5575_RX_LIST_ADDR), 
  1409.                       *(u32*)(iadev->dma+IPHASE5575_RX_LIST_ADDR));)  
  1410.   
  1411. writew(0xffff, iadev->reass_reg+REASS_MASK_REG);  
  1412. writew(0, iadev->reass_reg+MODE_REG);  
  1413. writew(RESET_REASS, iadev->reass_reg+REASS_COMMAND_REG);  
  1414.   
  1415. /* Receive side control memory map  
  1416.    -------------------------------  
  1417.   
  1418. Buffer descr 0x0000 (736 - 23K)  
  1419. VP Table 0x5c00 (256 - 512)  
  1420. Except q 0x5e00 (128 - 512)  
  1421. Free buffer q 0x6000 (1K - 2K)  
  1422. Packet comp q 0x6800 (1K - 2K)  
  1423. Reass Table 0x7000 (1K - 2K)  
  1424. VC Table 0x7800 (1K - 2K)  
  1425. ABR VC Table 0x8000 (1K - 32K)  
  1426. */  
  1427.   
  1428. /* Base address for Buffer Descriptor Table */  
  1429. writew(RX_DESC_BASE >> 16, iadev->reass_reg+REASS_DESC_BASE);  
  1430. /* Set the buffer size register */  
  1431. writew(iadev->rx_buf_sz, iadev->reass_reg+BUF_SIZE);  
  1432.   
  1433. /* Initialize each entry in the Buffer Descriptor Table */  
  1434.         iadev->RX_DESC_BASE_ADDR = iadev->reass_ram+RX_DESC_BASE*iadev->memSize;
  1435. buf_desc_ptr =(struct rx_buf_desc *)iadev->RX_DESC_BASE_ADDR;
  1436. memset((caddr_t)buf_desc_ptr, 0, sizeof(*buf_desc_ptr));  
  1437. buf_desc_ptr++;  
  1438. rx_pkt_start = iadev->rx_pkt_ram;  
  1439. for(i=1; i<=iadev->num_rx_desc; i++)  
  1440. {  
  1441. memset((caddr_t)buf_desc_ptr, 0, sizeof(*buf_desc_ptr));  
  1442. buf_desc_ptr->buf_start_hi = rx_pkt_start >> 16;  
  1443. buf_desc_ptr->buf_start_lo = rx_pkt_start & 0x0000ffff;  
  1444. buf_desc_ptr++;   
  1445. rx_pkt_start += iadev->rx_buf_sz;  
  1446. }  
  1447. IF_INIT(printk("Rx Buffer desc ptr: 0x%0xn", (u32)(buf_desc_ptr));)  
  1448.         i = FREE_BUF_DESC_Q*iadev->memSize; 
  1449. writew(i >> 16,  iadev->reass_reg+REASS_QUEUE_BASE); 
  1450.         writew(i, iadev->reass_reg+FREEQ_ST_ADR);
  1451.         writew(i+iadev->num_rx_desc*sizeof(u_short), 
  1452.                                          iadev->reass_reg+FREEQ_ED_ADR);
  1453.         writew(i, iadev->reass_reg+FREEQ_RD_PTR);
  1454.         writew(i+iadev->num_rx_desc*sizeof(u_short), 
  1455.                                         iadev->reass_reg+FREEQ_WR_PTR);    
  1456. /* Fill the FREEQ with all the free descriptors. */  
  1457. freeq_st_adr = readw(iadev->reass_reg+FREEQ_ST_ADR);  
  1458. freeq_start = (u_short *)(iadev->reass_ram+freeq_st_adr);  
  1459. for(i=1; i<=iadev->num_rx_desc; i++)  
  1460. {  
  1461. *freeq_start = (u_short)i;  
  1462. freeq_start++;  
  1463. }  
  1464. IF_INIT(printk("freeq_start: 0x%0xn", (u32)freeq_start);)  
  1465.         /* Packet Complete Queue */
  1466.         i = (PKT_COMP_Q * iadev->memSize) & 0xffff;
  1467.         writew(i, iadev->reass_reg+PCQ_ST_ADR);
  1468.         writew(i+iadev->num_vc*sizeof(u_short), iadev->reass_reg+PCQ_ED_ADR);
  1469.         writew(i, iadev->reass_reg+PCQ_RD_PTR);
  1470.         writew(i, iadev->reass_reg+PCQ_WR_PTR);
  1471.         /* Exception Queue */
  1472.         i = (EXCEPTION_Q * iadev->memSize) & 0xffff;
  1473.         writew(i, iadev->reass_reg+EXCP_Q_ST_ADR);
  1474.         writew(i + NUM_RX_EXCP * sizeof(RX_ERROR_Q), 
  1475.                                              iadev->reass_reg+EXCP_Q_ED_ADR);
  1476.         writew(i, iadev->reass_reg+EXCP_Q_RD_PTR);
  1477.         writew(i, iadev->reass_reg+EXCP_Q_WR_PTR); 
  1478.  
  1479.      /* Load local copy of FREEQ and PCQ ptrs */
  1480.         iadev->rfL.fdq_st = readw(iadev->reass_reg+FREEQ_ST_ADR) & 0xffff;
  1481.         iadev->rfL.fdq_ed = readw(iadev->reass_reg+FREEQ_ED_ADR) & 0xffff ;
  1482. iadev->rfL.fdq_rd = readw(iadev->reass_reg+FREEQ_RD_PTR) & 0xffff;
  1483. iadev->rfL.fdq_wr = readw(iadev->reass_reg+FREEQ_WR_PTR) & 0xffff;
  1484.         iadev->rfL.pcq_st = readw(iadev->reass_reg+PCQ_ST_ADR) & 0xffff;
  1485. iadev->rfL.pcq_ed = readw(iadev->reass_reg+PCQ_ED_ADR) & 0xffff;
  1486. iadev->rfL.pcq_rd = readw(iadev->reass_reg+PCQ_RD_PTR) & 0xffff;
  1487. iadev->rfL.pcq_wr = readw(iadev->reass_reg+PCQ_WR_PTR) & 0xffff;
  1488.         IF_INIT(printk("INIT:pcq_st:0x%x pcq_ed:0x%x pcq_rd:0x%x pcq_wr:0x%x", 
  1489.               iadev->rfL.pcq_st, iadev->rfL.pcq_ed, iadev->rfL.pcq_rd, 
  1490.               iadev->rfL.pcq_wr);)   
  1491. /* just for check - no VP TBL */  
  1492. /* VP Table */  
  1493. /* writew(0x0b80, iadev->reass_reg+VP_LKUP_BASE); */  
  1494. /* initialize VP Table for invalid VPIs  
  1495. - I guess we can write all 1s or 0x000f in the entire memory  
  1496.   space or something similar.  
  1497. */  
  1498.   
  1499. /* This seems to work and looks right to me too !!! */  
  1500.         i =  REASS_TABLE * iadev->memSize;
  1501. writew((i >> 3), iadev->reass_reg+REASS_TABLE_BASE);   
  1502.   /* initialize Reassembly table to I don't know what ???? */  
  1503. reass_table = (u16 *)(iadev->reass_ram+i);  
  1504.         j = REASS_TABLE_SZ * iadev->memSize;
  1505. for(i=0; i < j; i++)  
  1506. *reass_table++ = NO_AAL5_PKT;  
  1507.        i = 8*1024;
  1508.        vcsize_sel =  0;
  1509.        while (i != iadev->num_vc) {
  1510.           i /= 2;
  1511.           vcsize_sel++;
  1512.        }
  1513.        i = RX_VC_TABLE * iadev->memSize;
  1514.        writew(((i>>3) & 0xfff8) | vcsize_sel, iadev->reass_reg+VC_LKUP_BASE);
  1515.        vc_table = (u16 *)(iadev->reass_ram+RX_VC_TABLE*iadev->memSize);  
  1516.         j = RX_VC_TABLE_SZ * iadev->memSize;
  1517. for(i = 0; i < j; i++)  
  1518. {  
  1519. /* shift the reassembly pointer by 3 + lower 3 bits of   
  1520. vc_lkup_base register (=3 for 1K VCs) and the last byte   
  1521. is those low 3 bits.   
  1522. Shall program this later.  
  1523. */  
  1524. *vc_table = (i << 6) | 15; /* for invalid VCI */  
  1525. vc_table++;  
  1526. }  
  1527.         /* ABR VC table */
  1528.         i =  ABR_VC_TABLE * iadev->memSize;
  1529.         writew(i >> 3, iadev->reass_reg+ABR_LKUP_BASE);
  1530.                    
  1531.         i = ABR_VC_TABLE * iadev->memSize;
  1532. abr_vc_table = (struct abr_vc_table *)(iadev->reass_ram+i);  
  1533.         j = REASS_TABLE_SZ * iadev->memSize;
  1534.         memset ((char*)abr_vc_table, 0, j * sizeof(*abr_vc_table));
  1535.      for(i = 0; i < j; i++) {   
  1536. abr_vc_table->rdf = 0x0003;
  1537.               abr_vc_table->air = 0x5eb1;
  1538.         abr_vc_table++;   
  1539.         }  
  1540. /* Initialize other registers */  
  1541.   
  1542. /* VP Filter Register set for VC Reassembly only */  
  1543. writew(0xff00, iadev->reass_reg+VP_FILTER);  
  1544.         writew(0, iadev->reass_reg+XTRA_RM_OFFSET);
  1545. writew(0x1,  iadev->reass_reg+PROTOCOL_ID);
  1546. /* Packet Timeout Count  related Registers : 
  1547.    Set packet timeout to occur in about 3 seconds
  1548.    Set Packet Aging Interval count register to overflow in about 4 us
  1549.   */  
  1550.         writew(0xF6F8, iadev->reass_reg+PKT_TM_CNT );
  1551.         ptr16 = (u16*)j;
  1552.         i = ((u32)ptr16 >> 6) & 0xff;
  1553. ptr16  += j - 1;
  1554. i |=(((u32)ptr16 << 2) & 0xff00);
  1555.         writew(i, iadev->reass_reg+TMOUT_RANGE);
  1556.         /* initiate the desc_tble */
  1557.         for(i=0; i<iadev->num_tx_desc;i++)
  1558.             iadev->desc_tbl[i].timestamp = 0;
  1559. /* to clear the interrupt status register - read it */  
  1560. readw(iadev->reass_reg+REASS_INTR_STATUS_REG);   
  1561.   
  1562. /* Mask Register - clear it */  
  1563. writew(~(RX_FREEQ_EMPT|RX_PKT_RCVD), iadev->reass_reg+REASS_MASK_REG);  
  1564.   
  1565. skb_queue_head_init(&iadev->rx_dma_q);  
  1566. iadev->rx_free_desc_qhead = NULL;   
  1567. iadev->rx_open = kmalloc(4*iadev->num_vc,GFP_KERNEL);
  1568. if (!iadev->rx_open)  
  1569. {  
  1570. printk(KERN_ERR DEV_LABEL "itf %d couldn't get free pagen",
  1571. dev->number);  
  1572. kfree(odle_addr);
  1573. return -ENOMEM;  
  1574. }  
  1575. memset(iadev->rx_open, 0, 4*iadev->num_vc);  
  1576.         iadev->rxing = 1;
  1577.         iadev->rx_pkt_cnt = 0;
  1578. /* Mode Register */  
  1579. writew(R_ONLINE, iadev->reass_reg+MODE_REG);  
  1580. return 0;  
  1581. }  
  1582.   
  1583. /*  
  1584. The memory map suggested in appendix A and the coding for it.   
  1585. Keeping it around just in case we change our mind later.  
  1586.   
  1587. Buffer descr 0x0000 (128 - 4K)  
  1588. UBR sched 0x1000 (1K - 4K)  
  1589. UBR Wait q 0x2000 (1K - 4K)  
  1590. Commn queues 0x3000 Packet Ready, Trasmit comp(0x3100)  
  1591. (128 - 256) each  
  1592. extended VC 0x4000 (1K - 8K)  
  1593. ABR sched 0x6000 and ABR wait queue (1K - 2K) each  
  1594. CBR sched 0x7000 (as needed)  
  1595. VC table 0x8000 (1K - 32K)  
  1596. */  
  1597.   
  1598. static void tx_intr(struct atm_dev *dev)  
  1599. {  
  1600. IADEV *iadev;  
  1601. unsigned short status;  
  1602.         unsigned long flags;
  1603. iadev = INPH_IA_DEV(dev);  
  1604.   
  1605. status = readl(iadev->seg_reg+SEG_INTR_STATUS_REG);  
  1606.         if (status & TRANSMIT_DONE){
  1607.            IF_EVENT(printk("Tansmit Done Intr logic runn");)
  1608.            spin_lock_irqsave(&iadev->tx_lock, flags);
  1609.            ia_tx_poll(iadev);
  1610.            spin_unlock_irqrestore(&iadev->tx_lock, flags);
  1611.            writew(TRANSMIT_DONE, iadev->seg_reg+SEG_INTR_STATUS_REG);
  1612.            if (iadev->close_pending)  
  1613.                wake_up(&iadev->close_wait);
  1614.         }        
  1615. if (status & TCQ_NOT_EMPTY)  
  1616. {  
  1617.     IF_EVENT(printk("TCQ_NOT_EMPTY int receivedn");)  
  1618. }  
  1619. }  
  1620.   
  1621. static void tx_dle_intr(struct atm_dev *dev)
  1622. {
  1623.         IADEV *iadev;
  1624.         struct dle *dle, *cur_dle; 
  1625.         struct sk_buff *skb;
  1626.         struct atm_vcc *vcc;
  1627.         struct ia_vcc  *iavcc;
  1628.         u_int dle_lp;
  1629.         unsigned long flags;
  1630.         iadev = INPH_IA_DEV(dev);
  1631.         spin_lock_irqsave(&iadev->tx_lock, flags);   
  1632.         dle = iadev->tx_dle_q.read;
  1633.         dle_lp = readl(iadev->dma+IPHASE5575_TX_LIST_ADDR) & 
  1634.                                         (sizeof(struct dle)*DLE_ENTRIES - 1);
  1635.         cur_dle = (struct dle*)(iadev->tx_dle_q.start + (dle_lp >> 4));
  1636.         while (dle != cur_dle)
  1637.         {
  1638.             /* free the DMAed skb */ 
  1639.             skb = skb_dequeue(&iadev->tx_dma_q); 
  1640.             if (!skb) break;
  1641.             vcc = ATM_SKB(skb)->vcc;
  1642.             if (!vcc) {
  1643.                   printk("tx_dle_intr: vcc is nulln");
  1644.   spin_unlock_irqrestore(&iadev->tx_lock, flags);
  1645.                   dev_kfree_skb_any(skb);
  1646.                   return;
  1647.             }
  1648.             iavcc = INPH_IA_VCC(vcc);
  1649.             if (!iavcc) {
  1650.                   printk("tx_dle_intr: iavcc is nulln");
  1651.   spin_unlock_irqrestore(&iadev->tx_lock, flags);
  1652.                   dev_kfree_skb_any(skb);
  1653.                   return;
  1654.             }
  1655.             if (vcc->qos.txtp.pcr >= iadev->rate_limit) {
  1656.                if ((vcc->pop) && (skb->len != 0))
  1657.                {     
  1658.                  vcc->pop(vcc, skb);
  1659.                } 
  1660.                else {
  1661.                  dev_kfree_skb_any(skb);
  1662.                }
  1663.             }
  1664.             else { /* Hold the rate-limited skb for flow control */
  1665.                IA_SKB_STATE(skb) |= IA_DLED;
  1666.                skb_queue_tail(&iavcc->txing_skb, skb);
  1667.             }
  1668.             IF_EVENT(printk("tx_dle_intr: enque skb = 0x%x n", (u32)skb);)
  1669.             if (++dle == iadev->tx_dle_q.end)
  1670.                  dle = iadev->tx_dle_q.start;
  1671.         }
  1672.         iadev->tx_dle_q.read = dle;
  1673.         spin_unlock_irqrestore(&iadev->tx_lock, flags);
  1674. }
  1675.   
  1676. static int open_tx(struct atm_vcc *vcc)  
  1677. {  
  1678. struct ia_vcc *ia_vcc;  
  1679. IADEV *iadev;  
  1680. struct main_vc *vc;  
  1681. struct ext_vc *evc;  
  1682.         int ret;
  1683. IF_EVENT(printk("iadev: open_tx entered vcc->vci = %dn", vcc->vci);)  
  1684. if (vcc->qos.txtp.traffic_class == ATM_NONE) return 0;  
  1685. iadev = INPH_IA_DEV(vcc->dev);  
  1686.         
  1687.         if (iadev->phy_type & FE_25MBIT_PHY) {
  1688.            if (vcc->qos.txtp.traffic_class == ATM_ABR) {
  1689.                printk("IA:  ABR not supportn");
  1690.                return -EINVAL; 
  1691.            }
  1692.   if (vcc->qos.txtp.traffic_class == ATM_CBR) {
  1693.                printk("IA:  CBR not supportn");
  1694.                return -EINVAL; 
  1695.           }
  1696.         }
  1697.         ia_vcc =  INPH_IA_VCC(vcc);
  1698.         memset((caddr_t)ia_vcc, 0, sizeof(*ia_vcc));
  1699.         if (vcc->qos.txtp.max_sdu > 
  1700.                          (iadev->tx_buf_sz - sizeof(struct cpcs_trailer))){
  1701.            printk("IA:  SDU size over (%d) the configured SDU size %dn",
  1702.   vcc->qos.txtp.max_sdu,iadev->tx_buf_sz);
  1703.    INPH_IA_VCC(vcc) = NULL;  
  1704.            kfree(ia_vcc);
  1705.            return -EINVAL; 
  1706.         }
  1707. ia_vcc->vc_desc_cnt = 0;
  1708.         ia_vcc->txing = 1;
  1709.         /* find pcr */
  1710.         if (vcc->qos.txtp.max_pcr == ATM_MAX_PCR) 
  1711.            vcc->qos.txtp.pcr = iadev->LineRate;
  1712.         else if ((vcc->qos.txtp.max_pcr == 0)&&( vcc->qos.txtp.pcr <= 0))
  1713.            vcc->qos.txtp.pcr = iadev->LineRate;
  1714.         else if ((vcc->qos.txtp.max_pcr > vcc->qos.txtp.pcr) && (vcc->qos.txtp.max_pcr> 0)) 
  1715.            vcc->qos.txtp.pcr = vcc->qos.txtp.max_pcr;
  1716.         if (vcc->qos.txtp.pcr > iadev->LineRate)
  1717.              vcc->qos.txtp.pcr = iadev->LineRate;
  1718.         ia_vcc->pcr = vcc->qos.txtp.pcr;
  1719.         if (ia_vcc->pcr > (iadev->LineRate / 6) ) ia_vcc->ltimeout = HZ / 10;
  1720.         else if (ia_vcc->pcr > (iadev->LineRate / 130)) ia_vcc->ltimeout = HZ;
  1721.         else if (ia_vcc->pcr <= 170) ia_vcc->ltimeout = 16 * HZ;
  1722.         else ia_vcc->ltimeout = 2700 * HZ  / ia_vcc->pcr;
  1723.         if (ia_vcc->pcr < iadev->rate_limit)
  1724.            skb_queue_head_init (&ia_vcc->txing_skb);
  1725.         if (ia_vcc->pcr < iadev->rate_limit) {
  1726.            if (vcc->qos.txtp.max_sdu != 0) {
  1727.                if (ia_vcc->pcr > 60000)
  1728.                   vcc->sk->sndbuf = vcc->qos.txtp.max_sdu * 5;
  1729.                else if (ia_vcc->pcr > 2000)
  1730.                   vcc->sk->sndbuf = vcc->qos.txtp.max_sdu * 4;
  1731.                else
  1732.                  vcc->sk->sndbuf = 3*vcc->qos.txtp.max_sdu;
  1733.            }
  1734.            else
  1735.              vcc->sk->sndbuf = 24576;
  1736.         }
  1737.            
  1738. vc = (struct main_vc *)iadev->MAIN_VC_TABLE_ADDR;  
  1739. evc = (struct ext_vc *)iadev->EXT_VC_TABLE_ADDR;  
  1740. vc += vcc->vci;  
  1741. evc += vcc->vci;  
  1742. memset((caddr_t)vc, 0, sizeof(*vc));  
  1743. memset((caddr_t)evc, 0, sizeof(*evc));  
  1744.   
  1745. /* store the most significant 4 bits of vci as the last 4 bits   
  1746. of first part of atm header.  
  1747.    store the last 12 bits of vci as first 12 bits of the second  
  1748. part of the atm header.  
  1749. */  
  1750. evc->atm_hdr1 = (vcc->vci >> 12) & 0x000f;  
  1751. evc->atm_hdr2 = (vcc->vci & 0x0fff) << 4;  
  1752.  
  1753. /* check the following for different traffic classes */  
  1754. if (vcc->qos.txtp.traffic_class == ATM_UBR)  
  1755. {  
  1756. vc->type = UBR;  
  1757.                 vc->status = CRC_APPEND;
  1758. vc->acr = cellrate_to_float(iadev->LineRate);  
  1759.                 if (vcc->qos.txtp.pcr > 0) 
  1760.                    vc->acr = cellrate_to_float(vcc->qos.txtp.pcr);  
  1761.                 IF_UBR(printk("UBR: txtp.pcr = 0x%x f_rate = 0x%xn", 
  1762.                                              vcc->qos.txtp.max_pcr,vc->acr);)
  1763. }  
  1764. else if (vcc->qos.txtp.traffic_class == ATM_ABR)  
  1765. {       srv_cls_param_t srv_p;
  1766. IF_ABR(printk("Tx ABR VCCn");)  
  1767.                 init_abr_vc(iadev, &srv_p);
  1768.                 if (vcc->qos.txtp.pcr > 0) 
  1769.                    srv_p.pcr = vcc->qos.txtp.pcr;
  1770.                 if (vcc->qos.txtp.min_pcr > 0) {
  1771.                    int tmpsum = iadev->sum_mcr+iadev->sum_cbr+vcc->qos.txtp.min_pcr;
  1772.                    if (tmpsum > iadev->LineRate)
  1773.                        return -EBUSY;
  1774.                    srv_p.mcr = vcc->qos.txtp.min_pcr;
  1775.                    iadev->sum_mcr += vcc->qos.txtp.min_pcr;
  1776.                 } 
  1777.                 else srv_p.mcr = 0;
  1778.                 if (vcc->qos.txtp.icr)
  1779.                    srv_p.icr = vcc->qos.txtp.icr;
  1780.                 if (vcc->qos.txtp.tbe)
  1781.                    srv_p.tbe = vcc->qos.txtp.tbe;
  1782.                 if (vcc->qos.txtp.frtt)
  1783.                    srv_p.frtt = vcc->qos.txtp.frtt;
  1784.                 if (vcc->qos.txtp.rif)
  1785.                    srv_p.rif = vcc->qos.txtp.rif;
  1786.                 if (vcc->qos.txtp.rdf)
  1787.                    srv_p.rdf = vcc->qos.txtp.rdf;
  1788.                 if (vcc->qos.txtp.nrm_pres)
  1789.                    srv_p.nrm = vcc->qos.txtp.nrm;
  1790.                 if (vcc->qos.txtp.trm_pres)
  1791.                    srv_p.trm = vcc->qos.txtp.trm;
  1792.                 if (vcc->qos.txtp.adtf_pres)
  1793.                    srv_p.adtf = vcc->qos.txtp.adtf;
  1794.                 if (vcc->qos.txtp.cdf_pres)
  1795.                    srv_p.cdf = vcc->qos.txtp.cdf;    
  1796.                 if (srv_p.icr > srv_p.pcr)
  1797.                    srv_p.icr = srv_p.pcr;    
  1798.                 IF_ABR(printk("ABR:vcc->qos.txtp.max_pcr = %d  mcr = %dn", 
  1799.                                                       srv_p.pcr, srv_p.mcr);)
  1800. ia_open_abr_vc(iadev, &srv_p, vcc, 1);
  1801. } else if (vcc->qos.txtp.traffic_class == ATM_CBR) {
  1802.                 if (iadev->phy_type & FE_25MBIT_PHY) {
  1803.                     printk("IA:  CBR not supportn");
  1804.                     return -EINVAL; 
  1805.                 }
  1806.                 if (vcc->qos.txtp.max_pcr > iadev->LineRate) {
  1807.                    IF_CBR(printk("PCR is not availblen");)
  1808.                    return -1;
  1809.                 }
  1810.                 vc->type = CBR;
  1811.                 vc->status = CRC_APPEND;
  1812.                 if ((ret = ia_cbr_setup (iadev, vcc)) < 0) {     
  1813.                     return ret;
  1814.                 }
  1815.        } 
  1816. else  
  1817.            printk("iadev:  Non UBR, ABR and CBR traffic not supportedn"); 
  1818.         
  1819.         iadev->testTable[vcc->vci]->vc_status |= VC_ACTIVE;
  1820. IF_EVENT(printk("ia open_tx returning n");)  
  1821. return 0;  
  1822. }  
  1823.   
  1824.   
  1825. static int tx_init(struct atm_dev *dev)  
  1826. {  
  1827. IADEV *iadev;  
  1828. struct tx_buf_desc *buf_desc_ptr;
  1829. unsigned int tx_pkt_start;  
  1830. u32 *dle_addr;  
  1831. int i;  
  1832. u_short tcq_st_adr;  
  1833. u_short *tcq_start;  
  1834. u_short prq_st_adr;  
  1835. u_short *prq_start;  
  1836. struct main_vc *vc;  
  1837. struct ext_vc *evc;   
  1838.         u_short tmp16;
  1839.         u32 vcsize_sel;
  1840.  
  1841. iadev = INPH_IA_DEV(dev);  
  1842.         spin_lock_init(&iadev->tx_lock);
  1843.  
  1844. IF_INIT(printk("Tx MASK REG: 0x%0xn", 
  1845.                                 readw(iadev->seg_reg+SEG_MASK_REG));)  
  1846. /*---------- Initializing Transmit DLEs ----------*/  
  1847. /* allocating 8k memory for transmit DLEs */  
  1848. dle_addr = kmalloc(2*sizeof(struct dle)*DLE_ENTRIES, GFP_KERNEL);  
  1849. if (!dle_addr)  
  1850. {  
  1851. printk(KERN_ERR DEV_LABEL "can't allocate TX DLEsn");  
  1852. return -ENOMEM;
  1853. }  
  1854.   
  1855. /* find 4k byte boundary within the 8k allocated */  
  1856. dle_addr = (u32*)(((u32)dle_addr+(4096-1)) & ~(4096-1));  
  1857. iadev->tx_dle_q.start = (struct dle*)dle_addr;  
  1858. iadev->tx_dle_q.read = iadev->tx_dle_q.start;  
  1859. iadev->tx_dle_q.write = iadev->tx_dle_q.start;  
  1860. iadev->tx_dle_q.end = (struct dle*)((u32)dle_addr+sizeof(struct dle)*DLE_ENTRIES);  
  1861. /* write the upper 20 bits of the start address to tx list address register */  
  1862. writel(virt_to_bus(dle_addr) & 0xfffff000, iadev->dma+IPHASE5575_TX_LIST_ADDR);  
  1863. writew(0xffff, iadev->seg_reg+SEG_MASK_REG);  
  1864. writew(0, iadev->seg_reg+MODE_REG_0);  
  1865. writew(RESET_SEG, iadev->seg_reg+SEG_COMMAND_REG);  
  1866.         iadev->MAIN_VC_TABLE_ADDR = iadev->seg_ram+MAIN_VC_TABLE*iadev->memSize;
  1867.         iadev->EXT_VC_TABLE_ADDR = iadev->seg_ram+EXT_VC_TABLE*iadev->memSize;
  1868.         iadev->ABR_SCHED_TABLE_ADDR=iadev->seg_ram+ABR_SCHED_TABLE*iadev->memSize;
  1869.   
  1870. /*  
  1871.    Transmit side control memory map  
  1872.    --------------------------------    
  1873.  Buffer descr  0x0000 (128 - 4K)  
  1874.  Commn queues 0x1000 Transmit comp, Packet ready(0x1400)   
  1875. (512 - 1K) each  
  1876. TCQ - 4K, PRQ - 5K  
  1877.  CBR Table  0x1800 (as needed) - 6K  
  1878.  UBR Table 0x3000 (1K - 4K) - 12K  
  1879.  UBR Wait queue 0x4000 (1K - 4K) - 16K  
  1880.  ABR sched 0x5000 and ABR wait queue (1K - 2K) each  
  1881. ABR Tbl - 20K, ABR Wq - 22K   
  1882.  extended VC 0x6000 (1K - 8K) - 24K  
  1883.  VC Table 0x8000 (1K - 32K) - 32K  
  1884.   
  1885. Between 0x2000 (8K) and 0x3000 (12K) there is 4K space left for VBR Tbl  
  1886. and Wait q, which can be allotted later.  
  1887. */  
  1888.      
  1889. /* Buffer Descriptor Table Base address */  
  1890. writew(TX_DESC_BASE, iadev->seg_reg+SEG_DESC_BASE);  
  1891.   
  1892. /* initialize each entry in the buffer descriptor table */  
  1893. buf_desc_ptr =(struct tx_buf_desc *)(iadev->seg_ram+TX_DESC_BASE);  
  1894. memset((caddr_t)buf_desc_ptr, 0, sizeof(*buf_desc_ptr));  
  1895. buf_desc_ptr++;  
  1896. tx_pkt_start = TX_PACKET_RAM;  
  1897. for(i=1; i<=iadev->num_tx_desc; i++)  
  1898. {  
  1899. memset((caddr_t)buf_desc_ptr, 0, sizeof(*buf_desc_ptr));  
  1900. buf_desc_ptr->desc_mode = AAL5;  
  1901. buf_desc_ptr->buf_start_hi = tx_pkt_start >> 16;  
  1902. buf_desc_ptr->buf_start_lo = tx_pkt_start & 0x0000ffff;  
  1903. buf_desc_ptr++;   
  1904. tx_pkt_start += iadev->tx_buf_sz;  
  1905. }  
  1906.         iadev->tx_buf = kmalloc(iadev->num_tx_desc*sizeof(caddr_t), GFP_KERNEL);
  1907.         if (!iadev->tx_buf) {
  1908.             printk(KERN_ERR DEV_LABEL " couldn't get memn");
  1909.             return -EAGAIN;
  1910.         }
  1911.         for (i= 0; i< iadev->num_tx_desc; i++)
  1912.         {
  1913.  
  1914.             iadev->tx_buf[i] = kmalloc(sizeof(struct cpcs_trailer),
  1915.                                                            GFP_KERNEL|GFP_DMA);
  1916.             if(!iadev->tx_buf[i]) {                
  1917. printk(KERN_ERR DEV_LABEL " couldn't get freepagen"); 
  1918.           return -EAGAIN;
  1919.             }
  1920.         }
  1921.         iadev->desc_tbl = kmalloc(iadev->num_tx_desc *
  1922.                                    sizeof(struct desc_tbl_t), GFP_KERNEL);
  1923.   
  1924. /* Communication Queues base address */  
  1925.         i = TX_COMP_Q * iadev->memSize;
  1926. writew(i >> 16, iadev->seg_reg+SEG_QUEUE_BASE);  
  1927.   
  1928. /* Transmit Complete Queue */  
  1929. writew(i, iadev->seg_reg+TCQ_ST_ADR);  
  1930. writew(i, iadev->seg_reg+TCQ_RD_PTR);  
  1931. writew(i+iadev->num_tx_desc*sizeof(u_short),iadev->seg_reg+TCQ_WR_PTR); 
  1932. iadev->host_tcq_wr = i + iadev->num_tx_desc*sizeof(u_short);
  1933.         writew(i+2 * iadev->num_tx_desc * sizeof(u_short), 
  1934.                                               iadev->seg_reg+TCQ_ED_ADR); 
  1935. /* Fill the TCQ with all the free descriptors. */  
  1936. tcq_st_adr = readw(iadev->seg_reg+TCQ_ST_ADR);  
  1937. tcq_start = (u_short *)(iadev->seg_ram+tcq_st_adr);  
  1938. for(i=1; i<=iadev->num_tx_desc; i++)  
  1939. {  
  1940. *tcq_start = (u_short)i;  
  1941. tcq_start++;  
  1942. }  
  1943.   
  1944. /* Packet Ready Queue */  
  1945.         i = PKT_RDY_Q * iadev->memSize; 
  1946. writew(i, iadev->seg_reg+PRQ_ST_ADR);  
  1947. writew(i+2 * iadev->num_tx_desc * sizeof(u_short), 
  1948.                                               iadev->seg_reg+PRQ_ED_ADR);
  1949. writew(i, iadev->seg_reg+PRQ_RD_PTR);  
  1950. writew(i, iadev->seg_reg+PRQ_WR_PTR);  
  1951.  
  1952.         /* Load local copy of PRQ and TCQ ptrs */
  1953.         iadev->ffL.prq_st = readw(iadev->seg_reg+PRQ_ST_ADR) & 0xffff;
  1954. iadev->ffL.prq_ed = readw(iadev->seg_reg+PRQ_ED_ADR) & 0xffff;
  1955.   iadev->ffL.prq_wr = readw(iadev->seg_reg+PRQ_WR_PTR) & 0xffff;
  1956. iadev->ffL.tcq_st = readw(iadev->seg_reg+TCQ_ST_ADR) & 0xffff;
  1957. iadev->ffL.tcq_ed = readw(iadev->seg_reg+TCQ_ED_ADR) & 0xffff;
  1958. iadev->ffL.tcq_rd = readw(iadev->seg_reg+TCQ_RD_PTR) & 0xffff;
  1959. /* Just for safety initializing the queue to have desc 1 always */  
  1960. /* Fill the PRQ with all the free descriptors. */  
  1961. prq_st_adr = readw(iadev->seg_reg+PRQ_ST_ADR);  
  1962. prq_start = (u_short *)(iadev->seg_ram+prq_st_adr);  
  1963. for(i=1; i<=iadev->num_tx_desc; i++)  
  1964. {  
  1965. *prq_start = (u_short)0; /* desc 1 in all entries */  
  1966. prq_start++;  
  1967. }  
  1968. /* CBR Table */  
  1969.         IF_INIT(printk("Start CBR Initn");)
  1970. #if 1  /* for 1K VC board, CBR_PTR_BASE is 0 */
  1971.         writew(0,iadev->seg_reg+CBR_PTR_BASE);
  1972. #else /* Charlie's logic is wrong ? */
  1973.         tmp16 = (iadev->seg_ram+CBR_SCHED_TABLE*iadev->memSize)>>17;
  1974.         IF_INIT(printk("cbr_ptr_base = 0x%x ", tmp16);)
  1975.         writew(tmp16,iadev->seg_reg+CBR_PTR_BASE);
  1976. #endif
  1977.         IF_INIT(printk("value in register = 0x%xn",
  1978.                                    readw(iadev->seg_reg+CBR_PTR_BASE));)
  1979.         tmp16 = (CBR_SCHED_TABLE*iadev->memSize) >> 1;
  1980.         writew(tmp16, iadev->seg_reg+CBR_TAB_BEG);
  1981.         IF_INIT(printk("cbr_tab_beg = 0x%x in reg = 0x%x n", tmp16,
  1982.                                         readw(iadev->seg_reg+CBR_TAB_BEG));)
  1983.         writew(tmp16, iadev->seg_reg+CBR_TAB_END+1); // CBR_PTR;
  1984.         tmp16 = (CBR_SCHED_TABLE*iadev->memSize + iadev->num_vc*6 - 2) >> 1;
  1985.         writew(tmp16, iadev->seg_reg+CBR_TAB_END);
  1986.         IF_INIT(printk("iadev->seg_reg = 0x%x CBR_PTR_BASE = 0x%xn",
  1987.                (u32)iadev->seg_reg, readw(iadev->seg_reg+CBR_PTR_BASE));)
  1988.         IF_INIT(printk("CBR_TAB_BEG = 0x%x, CBR_TAB_END = 0x%x, CBR_PTR = 0x%xn",
  1989.           readw(iadev->seg_reg+CBR_TAB_BEG), readw(iadev->seg_reg+CBR_TAB_END),
  1990.           readw(iadev->seg_reg+CBR_TAB_END+1));)
  1991.         tmp16 = (iadev->seg_ram+CBR_SCHED_TABLE*iadev->memSize);
  1992.         /* Initialize the CBR Schedualing Table */
  1993.         memset((caddr_t)(iadev->seg_ram+CBR_SCHED_TABLE*iadev->memSize), 
  1994.                                                           0, iadev->num_vc*6); 
  1995.         iadev->CbrRemEntries = iadev->CbrTotEntries = iadev->num_vc*3;
  1996.         iadev->CbrEntryPt = 0;
  1997.         iadev->Granularity = MAX_ATM_155 / iadev->CbrTotEntries;
  1998.         iadev->NumEnabledCBR = 0;
  1999. /* UBR scheduling Table and wait queue */  
  2000. /* initialize all bytes of UBR scheduler table and wait queue to 0   
  2001. - SCHEDSZ is 1K (# of entries).  
  2002. - UBR Table size is 4K  
  2003. - UBR wait queue is 4K  
  2004.    since the table and wait queues are contiguous, all the bytes   
  2005.    can be intialized by one memeset.  
  2006. */  
  2007.         
  2008.         vcsize_sel = 0;
  2009.         i = 8*1024;
  2010.         while (i != iadev->num_vc) {
  2011.           i /= 2;
  2012.           vcsize_sel++;
  2013.         }
  2014.  
  2015.         i = MAIN_VC_TABLE * iadev->memSize;
  2016.         writew(vcsize_sel | ((i >> 8) & 0xfff8),iadev->seg_reg+VCT_BASE);
  2017.         i =  EXT_VC_TABLE * iadev->memSize;
  2018.         writew((i >> 8) & 0xfffe, iadev->seg_reg+VCTE_BASE);
  2019.         i = UBR_SCHED_TABLE * iadev->memSize;
  2020.         writew((i & 0xffff) >> 11,  iadev->seg_reg+UBR_SBPTR_BASE);
  2021.         i = UBR_WAIT_Q * iadev->memSize; 
  2022.         writew((i >> 7) & 0xffff,  iadev->seg_reg+UBRWQ_BASE);
  2023.   memset((caddr_t)(iadev->seg_ram+UBR_SCHED_TABLE*iadev->memSize),
  2024.                                                        0, iadev->num_vc*8);
  2025. /* ABR scheduling Table(0x5000-0x57ff) and wait queue(0x5800-0x5fff)*/  
  2026. /* initialize all bytes of ABR scheduler table and wait queue to 0   
  2027. - SCHEDSZ is 1K (# of entries).  
  2028. - ABR Table size is 2K  
  2029. - ABR wait queue is 2K  
  2030.    since the table and wait queues are contiguous, all the bytes   
  2031.    can be intialized by one memeset.  
  2032. */  
  2033.         i = ABR_SCHED_TABLE * iadev->memSize;
  2034.         writew((i >> 11) & 0xffff, iadev->seg_reg+ABR_SBPTR_BASE);
  2035.         i = ABR_WAIT_Q * iadev->memSize;
  2036.         writew((i >> 7) & 0xffff, iadev->seg_reg+ABRWQ_BASE);
  2037.  
  2038.         i = ABR_SCHED_TABLE*iadev->memSize;
  2039. memset((caddr_t)(iadev->seg_ram+i),  0, iadev->num_vc*4);
  2040. vc = (struct main_vc *)iadev->MAIN_VC_TABLE_ADDR;  
  2041. evc = (struct ext_vc *)iadev->EXT_VC_TABLE_ADDR;  
  2042.         iadev->testTable = kmalloc(sizeof(long)*iadev->num_vc, GFP_KERNEL); 
  2043.         if (!iadev->testTable) {
  2044.            printk("Get freepage  failedn");
  2045.            return -EAGAIN; 
  2046.         }
  2047. for(i=0; i<iadev->num_vc; i++)  
  2048. {  
  2049. memset((caddr_t)vc, 0, sizeof(*vc));  
  2050. memset((caddr_t)evc, 0, sizeof(*evc));  
  2051.                 iadev->testTable[i] = kmalloc(sizeof(struct testTable_t),
  2052. GFP_KERNEL);
  2053. if (!iadev->testTable[i])
  2054. return -ENOMEM;
  2055.                iadev->testTable[i]->lastTime = 0;
  2056.   iadev->testTable[i]->fract = 0;
  2057.                 iadev->testTable[i]->vc_status = VC_UBR;
  2058. vc++;  
  2059. evc++;  
  2060. }  
  2061.   
  2062. /* Other Initialization */  
  2063.   
  2064. /* Max Rate Register */  
  2065.         if (iadev->phy_type & FE_25MBIT_PHY) {
  2066.    writew(RATE25, iadev->seg_reg+MAXRATE);  
  2067.    writew((UBR_EN | (0x23 << 2)), iadev->seg_reg+STPARMS);  
  2068.         }
  2069.         else {
  2070.    writew(cellrate_to_float(iadev->LineRate),iadev->seg_reg+MAXRATE);
  2071.    writew((UBR_EN | ABR_EN | (0x23 << 2)), iadev->seg_reg+STPARMS);  
  2072.         }
  2073. /* Set Idle Header Reigisters to be sure */  
  2074. writew(0, iadev->seg_reg+IDLEHEADHI);  
  2075. writew(0, iadev->seg_reg+IDLEHEADLO);  
  2076.   
  2077. /* Program ABR UBR Priority Register  as  PRI_ABR_UBR_EQUAL */
  2078.         writew(0xaa00, iadev->seg_reg+ABRUBR_ARB); 
  2079.         iadev->close_pending = 0;
  2080. #if LINUX_VERSION_CODE >= 0x20303
  2081.         init_waitqueue_head(&iadev->close_wait);
  2082.         init_waitqueue_head(&iadev->timeout_wait);
  2083. #else
  2084.         iadev->close_wait = NULL;
  2085.         iadev->timeout_wait = NULL;
  2086. #endif 
  2087. skb_queue_head_init(&iadev->tx_dma_q);  
  2088. ia_init_rtn_q(&iadev->tx_return_q);  
  2089. /* RM Cell Protocol ID and Message Type */  
  2090. writew(RM_TYPE_4_0, iadev->seg_reg+RM_TYPE);  
  2091.         skb_queue_head_init (&iadev->tx_backlog);
  2092.   
  2093. /* Mode Register 1 */  
  2094. writew(MODE_REG_1_VAL, iadev->seg_reg+MODE_REG_1);  
  2095.   
  2096. /* Mode Register 0 */  
  2097. writew(T_ONLINE, iadev->seg_reg+MODE_REG_0);  
  2098.   
  2099. /* Interrupt Status Register - read to clear */  
  2100. readw(iadev->seg_reg+SEG_INTR_STATUS_REG);  
  2101.   
  2102. /* Interrupt Mask Reg- don't mask TCQ_NOT_EMPTY interrupt generation */  
  2103.         writew(~(TRANSMIT_DONE | TCQ_NOT_EMPTY), iadev->seg_reg+SEG_MASK_REG);
  2104.         writew(TRANSMIT_DONE, iadev->seg_reg+SEG_INTR_STATUS_REG);  
  2105.         iadev->tx_pkt_cnt = 0;
  2106.         iadev->rate_limit = iadev->LineRate / 3;
  2107.   
  2108. return 0;  
  2109. }   
  2110.    
  2111. static void ia_int(int irq, void *dev_id, struct pt_regs *regs)  
  2112. {  
  2113.    struct atm_dev *dev;  
  2114.    IADEV *iadev;  
  2115.    unsigned int status;  
  2116.    dev = dev_id;  
  2117.    iadev = INPH_IA_DEV(dev);  
  2118.    while( (status = readl(iadev->reg+IPHASE5575_BUS_STATUS_REG) & 0x7f))  
  2119.    { 
  2120.         IF_EVENT(printk("ia_int: status = 0x%xn", status);) 
  2121. if (status & STAT_REASSINT)  
  2122. {  
  2123.    /* do something */  
  2124.    IF_EVENT(printk("REASSINT Bus status reg: %08xn", status);) 
  2125.    rx_intr(dev);  
  2126. }  
  2127. if (status & STAT_DLERINT)  
  2128. {  
  2129.    /* Clear this bit by writing a 1 to it. */  
  2130.    *(u_int *)(iadev->reg+IPHASE5575_BUS_STATUS_REG) = STAT_DLERINT;
  2131.    rx_dle_intr(dev);  
  2132. }  
  2133. if (status & STAT_SEGINT)  
  2134. {  
  2135.    /* do something */ 
  2136.            IF_EVENT(printk("IA: tx_intr n");) 
  2137.    tx_intr(dev);  
  2138. }  
  2139. if (status & STAT_DLETINT)  
  2140. {  
  2141.    *(u_int *)(iadev->reg+IPHASE5575_BUS_STATUS_REG) = STAT_DLETINT;  
  2142.    tx_dle_intr(dev);  
  2143. }  
  2144. if (status & (STAT_FEINT | STAT_ERRINT | STAT_MARKINT))  
  2145. {  
  2146.            if (status & STAT_FEINT) 
  2147.                IaFrontEndIntr(iadev);
  2148. }  
  2149.    }  
  2150. }  
  2151.   
  2152.   
  2153.   
  2154. /*----------------------------- entries --------------------------------*/  
  2155. static int get_esi(struct atm_dev *dev)  
  2156. {  
  2157. IADEV *iadev;  
  2158. int i;  
  2159. u32 mac1;  
  2160. u16 mac2;  
  2161.   
  2162. iadev = INPH_IA_DEV(dev);  
  2163. mac1 = cpu_to_be32(le32_to_cpu(readl(  
  2164. iadev->reg+IPHASE5575_MAC1)));  
  2165. mac2 = cpu_to_be16(le16_to_cpu(readl(iadev->reg+IPHASE5575_MAC2)));  
  2166. IF_INIT(printk("ESI: 0x%08x%04xn", mac1, mac2);)  
  2167. for (i=0; i<MAC1_LEN; i++)  
  2168. dev->esi[i] = mac1 >>(8*(MAC1_LEN-1-i));  
  2169.   
  2170. for (i=0; i<MAC2_LEN; i++)  
  2171. dev->esi[i+MAC1_LEN] = mac2 >>(8*(MAC2_LEN - 1 -i));  
  2172. return 0;  
  2173. }  
  2174.   
  2175. static int reset_sar(struct atm_dev *dev)  
  2176. {  
  2177. IADEV *iadev;  
  2178. int i, error = 1;  
  2179. unsigned int pci[64];  
  2180.   
  2181. iadev = INPH_IA_DEV(dev);  
  2182. for(i=0; i<64; i++)  
  2183.   if ((error = pci_read_config_dword(iadev->pci,  
  2184. i*4, &pci[i])) != PCIBIOS_SUCCESSFUL)  
  2185.          return error;  
  2186. writel(0, iadev->reg+IPHASE5575_EXT_RESET);  
  2187. for(i=0; i<64; i++)  
  2188.   if ((error = pci_write_config_dword(iadev->pci,  
  2189. i*4, pci[i])) != PCIBIOS_SUCCESSFUL)  
  2190.     return error;  
  2191. udelay(5);  
  2192. return 0;  
  2193. }  
  2194.   
  2195.   
  2196. #if LINUX_VERSION_CODE >= 0x20312
  2197. static int __init ia_init(struct atm_dev *dev)
  2198. #else
  2199. __initfunc(static int ia_init(struct atm_dev *dev))
  2200. #endif  
  2201. {  
  2202. IADEV *iadev;  
  2203. unsigned long real_base, base;  
  2204. unsigned short command;  
  2205. unsigned char revision;  
  2206. int error, i; 
  2207.   
  2208. /* The device has been identified and registered. Now we read   
  2209.    necessary configuration info like memory base address,   
  2210.    interrupt number etc */  
  2211.   
  2212. IF_INIT(printk(">ia_initn");)  
  2213. dev->ci_range.vpi_bits = 0;  
  2214. dev->ci_range.vci_bits = NR_VCI_LD;  
  2215. iadev = INPH_IA_DEV(dev);  
  2216. real_base = pci_resource_start (iadev->pci, 0);
  2217. iadev->irq = iadev->pci->irq;
  2218.   
  2219. if ((error = pci_read_config_word(iadev->pci, PCI_COMMAND,&command))   
  2220.     || (error = pci_read_config_byte(iadev->pci,   
  2221. PCI_REVISION_ID,&revision)))   
  2222. {  
  2223. printk(KERN_ERR DEV_LABEL "(itf %d): init error 0x%xn",  
  2224. dev->number,error);  
  2225. return -EINVAL;  
  2226. }  
  2227. IF_INIT(printk(DEV_LABEL "(itf %d): rev.%d,realbase=0x%lx,irq=%dn",  
  2228. dev->number, revision, real_base, iadev->irq);)  
  2229.   
  2230. /* find mapping size of board */  
  2231.   
  2232. iadev->pci_map_size = pci_resource_len(iadev->pci, 0);
  2233.         if (iadev->pci_map_size == 0x100000){
  2234.           iadev->num_vc = 4096;
  2235.   dev->ci_range.vci_bits = NR_VCI_4K_LD;  
  2236.           iadev->memSize = 4;
  2237.         }
  2238.         else if (iadev->pci_map_size == 0x40000) {
  2239.           iadev->num_vc = 1024;
  2240.           iadev->memSize = 1;
  2241.         }
  2242.         else {
  2243.            printk("Unknown pci_map_size = 0x%xn", iadev->pci_map_size);
  2244.            return -EINVAL;
  2245.         }
  2246. IF_INIT(printk (DEV_LABEL "map size: %in", iadev->pci_map_size);)  
  2247.   
  2248. /* enable bus mastering */
  2249. pci_set_master(iadev->pci);
  2250. /*  
  2251.  * Delay at least 1us before doing any mem accesses (how 'bout 10?)  
  2252.  */  
  2253. udelay(10);  
  2254.   
  2255. /* mapping the physical address to a virtual address in address space */  
  2256. base=(unsigned long)ioremap((unsigned long)real_base,iadev->pci_map_size);  /* ioremap is not resolved ??? */  
  2257.   
  2258. if (!base)  
  2259. {  
  2260. printk(DEV_LABEL " (itf %d): can't set up page mappingn",  
  2261.     dev->number);  
  2262. return error;  
  2263. }  
  2264. IF_INIT(printk(DEV_LABEL " (itf %d): rev.%d,base=0x%lx,irq=%dn",  
  2265. dev->number, revision, base, iadev->irq);)  
  2266.   
  2267. /* filling the iphase dev structure */  
  2268. iadev->mem = iadev->pci_map_size /2;  
  2269. iadev->base_diff = real_base - base;  
  2270. iadev->real_base = real_base;  
  2271. iadev->base = base;  
  2272.   
  2273. /* Bus Interface Control Registers */  
  2274. iadev->reg = (u32 *) (base + REG_BASE);  
  2275. /* Segmentation Control Registers */  
  2276. iadev->seg_reg = (u32 *) (base + SEG_BASE);  
  2277. /* Reassembly Control Registers */  
  2278. iadev->reass_reg = (u32 *) (base + REASS_BASE);  
  2279. /* Front end/ DMA control registers */  
  2280. iadev->phy = (u32 *) (base + PHY_BASE);  
  2281. iadev->dma = (u32 *) (base + PHY_BASE);  
  2282. /* RAM - Segmentation RAm and Reassembly RAM */  
  2283. iadev->ram = (u32 *) (base + ACTUAL_RAM_BASE);  
  2284. iadev->seg_ram =  (base + ACTUAL_SEG_RAM_BASE);  
  2285. iadev->reass_ram = (base + ACTUAL_REASS_RAM_BASE);  
  2286.   
  2287. /* lets print out the above */  
  2288. IF_INIT(printk("Base addrs: %08x %08x %08x n %08x %08x %08x %08xn", 
  2289.           (u32)iadev->reg,(u32)iadev->seg_reg,(u32)iadev->reass_reg, 
  2290.           (u32)iadev->phy, (u32)iadev->ram, (u32)iadev->seg_ram, 
  2291.           (u32)iadev->reass_ram);) 
  2292.   
  2293. /* lets try reading the MAC address */  
  2294. error = get_esi(dev);  
  2295. if (error) {
  2296.   iounmap((void *) iadev->base);
  2297.   return error;  
  2298. }
  2299.         printk("IA: ");
  2300. for (i=0; i < ESI_LEN; i++)  
  2301.                 printk("%s%02X",i ? "-" : "",dev->esi[i]);  
  2302.         printk("n");  
  2303.   
  2304.         /* reset SAR */  
  2305.         if (reset_sar(dev)) {
  2306.    iounmap((void *) iadev->base);
  2307.            printk("IA: reset SAR fail, please try againn");
  2308.            return 1;
  2309.         }
  2310. return 0;  
  2311. }  
  2312. static void ia_update_stats(IADEV *iadev) {
  2313.     if (!iadev->carrier_detect)
  2314.         return;
  2315.     iadev->rx_cell_cnt += readw(iadev->reass_reg+CELL_CTR0)&0xffff;
  2316.     iadev->rx_cell_cnt += (readw(iadev->reass_reg+CELL_CTR1) & 0xffff) << 16;
  2317.     iadev->drop_rxpkt +=  readw(iadev->reass_reg + DRP_PKT_CNTR ) & 0xffff;
  2318.     iadev->drop_rxcell += readw(iadev->reass_reg + ERR_CNTR) & 0xffff;
  2319.     iadev->tx_cell_cnt += readw(iadev->seg_reg + CELL_CTR_LO_AUTO)&0xffff;
  2320.     iadev->tx_cell_cnt += (readw(iadev->seg_reg+CELL_CTR_HIGH_AUTO)&0xffff)<<16;
  2321.     return;
  2322. }
  2323.   
  2324. static void ia_led_timer(unsigned long arg) {
  2325.   unsigned long flags;
  2326.    static u_char blinking[8] = {0, 0, 0, 0, 0, 0, 0, 0};
  2327.         u_char i;
  2328.         static u32 ctrl_reg; 
  2329.         for (i = 0; i < iadev_count; i++) {
  2330.            if (ia_dev[i]) {
  2331.       ctrl_reg = readl(ia_dev[i]->reg+IPHASE5575_BUS_CONTROL_REG);
  2332.       if (blinking[i] == 0) {
  2333.  blinking[i]++;
  2334.                  ctrl_reg &= (~CTRL_LED);
  2335.                  writel(ctrl_reg, ia_dev[i]->reg+IPHASE5575_BUS_CONTROL_REG);
  2336.                  ia_update_stats(ia_dev[i]);
  2337.               }
  2338.               else {
  2339.  blinking[i] = 0;
  2340.  ctrl_reg |= CTRL_LED;
  2341.                  writel(ctrl_reg, ia_dev[i]->reg+IPHASE5575_BUS_CONTROL_REG);
  2342.                  spin_lock_irqsave(&ia_dev[i]->tx_lock, flags);
  2343.                  if (ia_dev[i]->close_pending)  
  2344.                     wake_up(&ia_dev[i]->close_wait);
  2345.                  ia_tx_poll(ia_dev[i]);
  2346.                  spin_unlock_irqrestore(&ia_dev[i]->tx_lock, flags);
  2347.               }
  2348.            }
  2349.         }
  2350. mod_timer(&ia_timer, jiffies + HZ / 4);
  2351.   return;
  2352. }
  2353. static void ia_phy_put(struct atm_dev *dev, unsigned char value,   
  2354. unsigned long addr)  
  2355. {  
  2356. writel(value, INPH_IA_DEV(dev)->phy+addr);  
  2357. }  
  2358.   
  2359. static unsigned char ia_phy_get(struct atm_dev *dev, unsigned long addr)  
  2360. {  
  2361. return readl(INPH_IA_DEV(dev)->phy+addr);  
  2362. }  
  2363. #if LINUX_VERSION_CODE >= 0x20312
  2364. static int __init ia_start(struct atm_dev *dev)
  2365. #else
  2366. __initfunc(static int ia_start(struct atm_dev *dev))
  2367. #endif  
  2368. {  
  2369. IADEV *iadev;  
  2370. int error = 1;  
  2371. unsigned char phy;  
  2372. u32 ctrl_reg;  
  2373. IF_EVENT(printk(">ia_startn");)  
  2374. iadev = INPH_IA_DEV(dev);  
  2375.         if (request_irq(iadev->irq, &ia_int, SA_SHIRQ, DEV_LABEL, dev)) {  
  2376.                 printk(KERN_ERR DEV_LABEL "(itf %d): IRQ%d is already in usen",  
  2377.                     dev->number, iadev->irq);  
  2378.                 return -EAGAIN;  
  2379.         }  
  2380.         /* @@@ should release IRQ on error */  
  2381. /* enabling memory + master */  
  2382.         if ((error = pci_write_config_word(iadev->pci,   
  2383. PCI_COMMAND,   
  2384. PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER )))   
  2385. {  
  2386.                 printk(KERN_ERR DEV_LABEL "(itf %d): can't enable memory+"  
  2387.                     "master (0x%x)n",dev->number, error);  
  2388.                 free_irq(iadev->irq, dev); 
  2389.                 return -EIO;  
  2390.         }  
  2391. udelay(10);  
  2392.   
  2393. /* Maybe we should reset the front end, initialize Bus Interface Control   
  2394. Registers and see. */  
  2395.   
  2396. IF_INIT(printk("Bus ctrl reg: %08xn", 
  2397.                             readl(iadev->reg+IPHASE5575_BUS_CONTROL_REG));)  
  2398. ctrl_reg = readl(iadev->reg+IPHASE5575_BUS_CONTROL_REG);  
  2399. ctrl_reg = (ctrl_reg & (CTRL_LED | CTRL_FE_RST))  
  2400. | CTRL_B8  
  2401. | CTRL_B16  
  2402. | CTRL_B32  
  2403. | CTRL_B48  
  2404. | CTRL_B64  
  2405. | CTRL_B128  
  2406. | CTRL_ERRMASK  
  2407. | CTRL_DLETMASK /* shud be removed l8r */  
  2408. | CTRL_DLERMASK  
  2409. | CTRL_SEGMASK  
  2410. | CTRL_REASSMASK    
  2411. | CTRL_FEMASK  
  2412. | CTRL_CSPREEMPT;  
  2413.   
  2414.        writel(ctrl_reg, iadev->reg+IPHASE5575_BUS_CONTROL_REG);   
  2415.   
  2416. IF_INIT(printk("Bus ctrl reg after initializing: %08xn", 
  2417.                            readl(iadev->reg+IPHASE5575_BUS_CONTROL_REG));  
  2418.    printk("Bus status reg after init: %08xn", 
  2419.                             readl(iadev->reg+IPHASE5575_BUS_STATUS_REG));)  
  2420.     
  2421.         ia_hw_type(iadev); 
  2422. error = tx_init(dev);  
  2423. if (error) {
  2424.            free_irq(iadev->irq, dev);  
  2425.            return error;
  2426.         }  
  2427. error = rx_init(dev);  
  2428. if (error) {
  2429.           free_irq(iadev->irq, dev); 
  2430.           return error;  
  2431.         }
  2432.   
  2433. ctrl_reg = readl(iadev->reg+IPHASE5575_BUS_CONTROL_REG);  
  2434.         writel(ctrl_reg | CTRL_FE_RST, iadev->reg+IPHASE5575_BUS_CONTROL_REG);   
  2435. IF_INIT(printk("Bus ctrl reg after initializing: %08xn", 
  2436.                                readl(iadev->reg+IPHASE5575_BUS_CONTROL_REG));)  
  2437.         phy = 0; /* resolve compiler complaint */
  2438.         IF_INIT ( 
  2439. if ((phy=ia_phy_get(dev,0)) == 0x30)  
  2440. printk("IA: pm5346,rev.%dn",phy&0x0f);  
  2441. else  
  2442. printk("IA: utopia,rev.%0xn",phy);) 
  2443.         if (iadev->phy_type &  FE_25MBIT_PHY) {
  2444.            ia_mb25_init(iadev);
  2445.            return 0;
  2446.         }
  2447.         if (iadev->phy_type & (FE_DS3_PHY | FE_E3_PHY)) {
  2448.            ia_suni_pm7345_init(iadev);
  2449.            return 0;
  2450.         }
  2451. error = suni_init(dev);  
  2452. if (error) {
  2453.           free_irq(iadev->irq, dev); 
  2454.           return error;  
  2455.         }
  2456.         /* Enable interrupt on loss of signal SUNI_RSOP_CIE 0x10
  2457.            SUNI_RSOP_CIE_LOSE - 0x04
  2458.         */
  2459.         ia_phy_put(dev, ia_phy_get(dev,0x10) | 0x04, 0x10);         
  2460. #ifndef MODULE
  2461. error = dev->phy->start(dev);  
  2462. if (error) {
  2463.           free_irq(iadev->irq, dev);
  2464.           return error;
  2465.         }   
  2466. #endif
  2467.         /* Get iadev->carrier_detect status */
  2468.         IaFrontEndIntr(iadev);
  2469. return 0;  
  2470. }  
  2471.   
  2472. static void ia_close(struct atm_vcc *vcc)  
  2473. {  
  2474.         u16 *vc_table;
  2475.         IADEV *iadev;
  2476.         struct ia_vcc *ia_vcc;
  2477.         struct sk_buff *skb = NULL;
  2478.         struct sk_buff_head tmp_tx_backlog, tmp_vcc_backlog;
  2479.         unsigned long closetime, flags;
  2480.         int ctimeout;
  2481.         iadev = INPH_IA_DEV(vcc->dev);
  2482.         ia_vcc = INPH_IA_VCC(vcc);
  2483. if (!ia_vcc) return;  
  2484.         IF_EVENT(printk("ia_close: ia_vcc->vc_desc_cnt = %d  vci = %dn", 
  2485.                                               ia_vcc->vc_desc_cnt,vcc->vci);)
  2486. clear_bit(ATM_VF_READY,&vcc->flags);
  2487.         skb_queue_head_init (&tmp_tx_backlog);
  2488.         skb_queue_head_init (&tmp_vcc_backlog); 
  2489.         if (vcc->qos.txtp.traffic_class != ATM_NONE) {
  2490.            iadev->close_pending++;
  2491.            sleep_on_timeout(&iadev->timeout_wait, 50);
  2492.            spin_lock_irqsave(&iadev->tx_lock, flags); 
  2493.            while((skb = skb_dequeue(&iadev->tx_backlog))) {
  2494.               if (ATM_SKB(skb)->vcc == vcc){ 
  2495.                  if (vcc->pop) vcc->pop(vcc, skb);
  2496.                  else dev_kfree_skb_any(skb);
  2497.               }
  2498.               else 
  2499.                  skb_queue_tail(&tmp_tx_backlog, skb);
  2500.            } 
  2501.            while((skb = skb_dequeue(&tmp_tx_backlog))) 
  2502.              skb_queue_tail(&iadev->tx_backlog, skb);
  2503.            IF_EVENT(printk("IA TX Done decs_cnt = %dn", ia_vcc->vc_desc_cnt);) 
  2504.            closetime = jiffies;
  2505.            ctimeout = 300000 / ia_vcc->pcr;
  2506.            if (ctimeout == 0)
  2507.               ctimeout = 1;
  2508.            while (ia_vcc->vc_desc_cnt > 0){
  2509.               if ((jiffies - closetime) >= ctimeout) 
  2510.                  break;
  2511.               spin_unlock_irqrestore(&iadev->tx_lock, flags);
  2512.               sleep_on(&iadev->close_wait);
  2513.               spin_lock_irqsave(&iadev->tx_lock, flags);
  2514.            }    
  2515.            iadev->close_pending--;
  2516.            iadev->testTable[vcc->vci]->lastTime = 0;
  2517.            iadev->testTable[vcc->vci]->fract = 0; 
  2518.            iadev->testTable[vcc->vci]->vc_status = VC_UBR; 
  2519.            if (vcc->qos.txtp.traffic_class == ATM_ABR) {
  2520.               if (vcc->qos.txtp.min_pcr > 0)
  2521.                  iadev->sum_mcr -= vcc->qos.txtp.min_pcr;
  2522.            }
  2523.            if (vcc->qos.txtp.traffic_class == ATM_CBR) {
  2524.               ia_vcc = INPH_IA_VCC(vcc); 
  2525.               iadev->sum_mcr -= ia_vcc->NumCbrEntry*iadev->Granularity;
  2526.               ia_cbrVc_close (vcc);
  2527.            }
  2528.            spin_unlock_irqrestore(&iadev->tx_lock, flags);
  2529.         }
  2530.         
  2531.         if (vcc->qos.rxtp.traffic_class != ATM_NONE) {   
  2532.            // reset reass table
  2533.            vc_table = (u16 *)(iadev->reass_ram+REASS_TABLE*iadev->memSize);
  2534.            vc_table += vcc->vci; 
  2535.            *vc_table = NO_AAL5_PKT;
  2536.            // reset vc table
  2537.            vc_table = (u16 *)(iadev->reass_ram+RX_VC_TABLE*iadev->memSize);
  2538.            vc_table += vcc->vci;
  2539.            *vc_table = (vcc->vci << 6) | 15;
  2540.            if (vcc->qos.rxtp.traffic_class == ATM_ABR) {
  2541.               struct abr_vc_table *abr_vc_table = (struct abr_vc_table *)
  2542.                                 (iadev->reass_ram+ABR_VC_TABLE*iadev->memSize);
  2543.               abr_vc_table +=  vcc->vci;
  2544.               abr_vc_table->rdf = 0x0003;
  2545.               abr_vc_table->air = 0x5eb1;
  2546.            }                                 
  2547.            // Drain the packets
  2548.            rx_dle_intr(vcc->dev); 
  2549.            iadev->rx_open[vcc->vci] = 0;
  2550.         }
  2551. kfree(INPH_IA_VCC(vcc));  
  2552.         ia_vcc = NULL;
  2553.         INPH_IA_VCC(vcc) = NULL;  
  2554.         clear_bit(ATM_VF_ADDR,&vcc->flags);
  2555.         return;        
  2556. }  
  2557.   
  2558. static int ia_open(struct atm_vcc *vcc, short vpi, int vci)  
  2559. {  
  2560. IADEV *iadev;  
  2561. struct ia_vcc *ia_vcc;  
  2562. int error;  
  2563. if (!test_bit(ATM_VF_PARTIAL,&vcc->flags))  
  2564. {  
  2565. IF_EVENT(printk("ia: not partially allocated resourcesn");)  
  2566. INPH_IA_VCC(vcc) = NULL;  
  2567. }  
  2568. iadev = INPH_IA_DEV(vcc->dev);  
  2569. error = atm_find_ci(vcc, &vpi, &vci);  
  2570. if (error)   
  2571. {  
  2572.     printk("iadev: atm_find_ci returned error %dn", error);  
  2573.     return error;  
  2574. }  
  2575. vcc->vpi = vpi;  
  2576. vcc->vci = vci;  
  2577. if (vci != ATM_VPI_UNSPEC && vpi != ATM_VCI_UNSPEC)  
  2578. {  
  2579. IF_EVENT(printk("iphase open: unspec partn");)  
  2580. set_bit(ATM_VF_ADDR,&vcc->flags);
  2581. }  
  2582. if (vcc->qos.aal != ATM_AAL5)  
  2583. return -EINVAL;  
  2584. IF_EVENT(printk(DEV_LABEL "(itf %d): open %d.%dn", 
  2585.                                  vcc->dev->number, vcc->vpi, vcc->vci);)  
  2586.   
  2587. /* Device dependent initialization */  
  2588. ia_vcc = kmalloc(sizeof(*ia_vcc), GFP_KERNEL);  
  2589. if (!ia_vcc) return -ENOMEM;  
  2590. INPH_IA_VCC(vcc) = ia_vcc;  
  2591.   
  2592. if ((error = open_rx(vcc)))  
  2593. {  
  2594. IF_EVENT(printk("iadev: error in open_rx, closingn");)  
  2595. ia_close(vcc);  
  2596. return error;  
  2597. }  
  2598.   
  2599. if ((error = open_tx(vcc)))  
  2600. {  
  2601. IF_EVENT(printk("iadev: error in open_tx, closingn");)  
  2602. ia_close(vcc);  
  2603. return error;  
  2604. }  
  2605.   
  2606. set_bit(ATM_VF_READY,&vcc->flags);
  2607. #ifndef MODULE
  2608.         {
  2609.            static u8 first = 1; 
  2610.            if (first) {
  2611.               ia_timer.expires = jiffies + 3*HZ;
  2612.               add_timer(&ia_timer);
  2613.               first = 0;
  2614.            }           
  2615.         }
  2616. #endif
  2617. IF_EVENT(printk("ia open returningn");)  
  2618. return 0;  
  2619. }  
  2620.   
  2621. static int ia_change_qos(struct atm_vcc *vcc, struct atm_qos *qos, int flags)  
  2622. {  
  2623. IF_EVENT(printk(">ia_change_qosn");)  
  2624. return 0;  
  2625. }  
  2626.   
  2627. static int ia_ioctl(struct atm_dev *dev, unsigned int cmd, void *arg)  
  2628. {  
  2629.    IA_CMDBUF ia_cmds;
  2630.    IADEV *iadev;
  2631.    int i, board;
  2632.    u16 *tmps;
  2633.    IF_EVENT(printk(">ia_ioctln");)  
  2634.    if (cmd != IA_CMD) {
  2635.       if (!dev->phy->ioctl) return -EINVAL;
  2636.       return dev->phy->ioctl(dev,cmd,arg);
  2637.    }
  2638.    if (copy_from_user(&ia_cmds, arg, sizeof ia_cmds)) return -EFAULT; 
  2639.    board = ia_cmds.status;
  2640.    if ((board < 0) || (board > iadev_count))
  2641.          board = 0;    
  2642.    iadev = ia_dev[board];
  2643.    switch (ia_cmds.cmd) {
  2644.    case MEMDUMP:
  2645.    {
  2646. switch (ia_cmds.sub_cmd) {
  2647.           case MEMDUMP_DEV:     
  2648.      if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2649.      if (copy_to_user(ia_cmds.buf, iadev, sizeof(IADEV)))
  2650.                 return -EFAULT;
  2651.              ia_cmds.status = 0;
  2652.              break;
  2653.           case MEMDUMP_SEGREG:
  2654.      if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2655.              tmps = (u16 *)ia_cmds.buf;
  2656.              for(i=0; i<0x80; i+=2, tmps++)
  2657.                 if(put_user(*(u16*)(iadev->seg_reg+i), tmps)) return -EFAULT;
  2658.              ia_cmds.status = 0;
  2659.              ia_cmds.len = 0x80;
  2660.              break;
  2661.           case MEMDUMP_REASSREG:
  2662.      if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2663.              tmps = (u16 *)ia_cmds.buf;
  2664.              for(i=0; i<0x80; i+=2, tmps++)
  2665.                 if(put_user(*(u16*)(iadev->reass_reg+i), tmps)) return -EFAULT;
  2666.              ia_cmds.status = 0;
  2667.              ia_cmds.len = 0x80;
  2668.              break;
  2669.           case MEMDUMP_FFL:
  2670.           {  
  2671.              ia_regs_t       regs_local;
  2672.              ffredn_t        *ffL = &regs_local.ffredn;
  2673.              rfredn_t        *rfL = &regs_local.rfredn;
  2674.                      
  2675.      if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2676.              /* Copy real rfred registers into the local copy */
  2677.        for (i=0; i<(sizeof (rfredn_t))/4; i++)
  2678.                 ((u_int *)rfL)[i] = ((u_int *)iadev->reass_reg)[i] & 0xffff;
  2679.               /* Copy real ffred registers into the local copy */
  2680.      for (i=0; i<(sizeof (ffredn_t))/4; i++)
  2681.                 ((u_int *)ffL)[i] = ((u_int *)iadev->seg_reg)[i] & 0xffff;
  2682.              if (copy_to_user(ia_cmds.buf, &regs_local,sizeof(ia_regs_t)))
  2683.                 return -EFAULT;
  2684.              printk("Board %d registers dumpedn", board);
  2685.              ia_cmds.status = 0;                  
  2686.  }
  2687.           break;        
  2688.          case READ_REG:
  2689.          {  
  2690.      if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2691.              desc_dbg(iadev); 
  2692.              ia_cmds.status = 0; 
  2693.          }
  2694.              break;
  2695.          case 0x6:
  2696.          {  
  2697.              ia_cmds.status = 0; 
  2698.              printk("skb = 0x%lxn", (long)skb_peek(&iadev->tx_backlog));
  2699.              printk("rtn_q: 0x%lxn",(long)ia_deque_rtn_q(&iadev->tx_return_q));
  2700.          }
  2701.              break;
  2702.          case 0x8:
  2703.          {
  2704.              struct k_sonet_stats *stats;
  2705.              stats = &PRIV(_ia_dev[board])->sonet_stats;
  2706.              printk("section_bip: %dn", atomic_read(&stats->section_bip));
  2707.              printk("line_bip   : %dn", atomic_read(&stats->line_bip));
  2708.              printk("path_bip   : %dn", atomic_read(&stats->path_bip));
  2709.              printk("line_febe  : %dn", atomic_read(&stats->line_febe));
  2710.              printk("path_febe  : %dn", atomic_read(&stats->path_febe));
  2711.              printk("corr_hcs   : %dn", atomic_read(&stats->corr_hcs));
  2712.              printk("uncorr_hcs : %dn", atomic_read(&stats->uncorr_hcs));
  2713.              printk("tx_cells   : %dn", atomic_read(&stats->tx_cells));
  2714.              printk("rx_cells   : %dn", atomic_read(&stats->rx_cells));
  2715.          }
  2716.             ia_cmds.status = 0;
  2717.             break;
  2718.          case 0x9:
  2719.     if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2720.             for (i = 1; i <= iadev->num_rx_desc; i++)
  2721.                free_desc(_ia_dev[board], i);
  2722.             writew( ~(RX_FREEQ_EMPT | RX_EXCP_RCVD), 
  2723.                                             iadev->reass_reg+REASS_MASK_REG);
  2724.             iadev->rxing = 1;
  2725.             
  2726.             ia_cmds.status = 0;
  2727.             break;
  2728.          case 0xb:
  2729.     if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2730.             IaFrontEndIntr(iadev);
  2731.             break;
  2732.          case 0xa:
  2733.     if (!capable(CAP_NET_ADMIN)) return -EPERM;
  2734.          {  
  2735.              ia_cmds.status = 0; 
  2736.              IADebugFlag = ia_cmds.maddr;
  2737.              printk("New debug option loadedn");
  2738.          }
  2739.              break;
  2740.          default:
  2741.              ia_cmds.status = 0;
  2742.              break;
  2743.       }
  2744.    }
  2745.       break;
  2746.    default:
  2747.       break;
  2748.    }
  2749.    return 0;  
  2750. }  
  2751.   
  2752. static int ia_getsockopt(struct atm_vcc *vcc, int level, int optname,   
  2753. void *optval, int optlen)  
  2754. {  
  2755. IF_EVENT(printk(">ia_getsockoptn");)  
  2756. return -EINVAL;  
  2757. }  
  2758.   
  2759. static int ia_setsockopt(struct atm_vcc *vcc, int level, int optname,   
  2760. void *optval, int optlen)  
  2761. {  
  2762. IF_EVENT(printk(">ia_setsockoptn");)  
  2763. return -EINVAL;  
  2764. }  
  2765.   
  2766. static int ia_pkt_tx (struct atm_vcc *vcc, struct sk_buff *skb) {
  2767.         IADEV *iadev;
  2768.         struct dle *wr_ptr;
  2769.         struct tx_buf_desc *buf_desc_ptr;
  2770.         int desc;
  2771.         int comp_code;
  2772.         unsigned int addr;
  2773.         int total_len, pad, last;
  2774.         struct cpcs_trailer *trailer;
  2775.         struct ia_vcc *iavcc;
  2776.         iadev = INPH_IA_DEV(vcc->dev);  
  2777.         iavcc = INPH_IA_VCC(vcc);
  2778.         if (!iavcc->txing) {
  2779.            printk("discard packet on closed VCn");
  2780.            if (vcc->pop)
  2781. vcc->pop(vcc, skb);
  2782.            else
  2783. dev_kfree_skb_any(skb);
  2784.    return 0;
  2785.         }
  2786.         if (skb->len > iadev->tx_buf_sz - 8) {
  2787.            printk("Transmit size over tx buffer sizen");
  2788.            if (vcc->pop)
  2789.                  vcc->pop(vcc, skb);
  2790.            else
  2791.                  dev_kfree_skb_any(skb);
  2792.           return 0;
  2793.         }
  2794.         if ((u32)skb->data & 3) {
  2795.            printk("Misaligned SKBn");
  2796.            if (vcc->pop)
  2797.                  vcc->pop(vcc, skb);
  2798.            else
  2799.                  dev_kfree_skb_any(skb);
  2800.            return 0;
  2801.         }       
  2802. /* Get a descriptor number from our free descriptor queue  
  2803.    We get the descr number from the TCQ now, since I am using  
  2804.    the TCQ as a free buffer queue. Initially TCQ will be   
  2805.    initialized with all the descriptors and is hence, full.  
  2806. */
  2807. desc = get_desc (iadev, iavcc);
  2808. if (desc == 0xffff) 
  2809.     return 1;
  2810. comp_code = desc >> 13;  
  2811. desc &= 0x1fff;  
  2812.   
  2813. if ((desc == 0) || (desc > iadev->num_tx_desc))  
  2814. {  
  2815. IF_ERR(printk(DEV_LABEL "invalid desc for send: %dn", desc);) 
  2816.                 atomic_inc(&vcc->stats->tx);
  2817. if (vcc->pop)   
  2818.     vcc->pop(vcc, skb);   
  2819. else  
  2820.     dev_kfree_skb_any(skb);
  2821. return 0;   /* return SUCCESS */
  2822. }  
  2823.   
  2824. if (comp_code)  
  2825. {  
  2826.     IF_ERR(printk(DEV_LABEL "send desc:%d completion code %d errorn", 
  2827.                                                             desc, comp_code);)  
  2828. }  
  2829.        
  2830.         /* remember the desc and vcc mapping */
  2831.         iavcc->vc_desc_cnt++;
  2832.         iadev->desc_tbl[desc-1].iavcc = iavcc;
  2833.         iadev->desc_tbl[desc-1].txskb = skb;
  2834.         IA_SKB_STATE(skb) = 0;
  2835.         iadev->ffL.tcq_rd += 2;
  2836.         if (iadev->ffL.tcq_rd > iadev->ffL.tcq_ed)
  2837.    iadev->ffL.tcq_rd  = iadev->ffL.tcq_st;
  2838. writew(iadev->ffL.tcq_rd, iadev->seg_reg+TCQ_RD_PTR);
  2839.   
  2840. /* Put the descriptor number in the packet ready queue  
  2841. and put the updated write pointer in the DLE field   
  2842. */   
  2843. *(u16*)(iadev->seg_ram+iadev->ffL.prq_wr) = desc; 
  2844.   iadev->ffL.prq_wr += 2;
  2845.         if (iadev->ffL.prq_wr > iadev->ffL.prq_ed)
  2846.                 iadev->ffL.prq_wr = iadev->ffL.prq_st;
  2847.   
  2848. /* Figure out the exact length of the packet and padding required to 
  2849.            make it  aligned on a 48 byte boundary.  */
  2850. total_len = skb->len + sizeof(struct cpcs_trailer);  
  2851. last = total_len - (total_len/48)*48;  
  2852. pad = 48 - last;  
  2853. total_len = pad + total_len;  
  2854. IF_TX(printk("ia packet len:%d padding:%dn", total_len, pad);)  
  2855.  
  2856. /* Put the packet in a tx buffer */   
  2857. if (!iadev->tx_buf[desc-1])  
  2858. printk("couldn't get free pagen");  
  2859.         IF_TX(printk("Sent: skb = 0x%x skb->data: 0x%x len: %d, desc: %dn",
  2860.                   (u32)skb, (u32)skb->data, skb->len, desc);)
  2861.         addr = virt_to_bus(skb->data);
  2862. trailer = (struct cpcs_trailer*)iadev->tx_buf[desc-1];  
  2863. trailer->control = 0; 
  2864.         /*big endian*/ 
  2865. trailer->length = ((skb->len & 0xff) << 8) | ((skb->len & 0xff00) >> 8);
  2866. trailer->crc32 = 0; /* not needed - dummy bytes */  
  2867. /* Display the packet */  
  2868. IF_TXPKT(printk("Sent data: len = %d MsgNum = %dn", 
  2869.                                                         skb->len, tcnter++);  
  2870.         xdump(skb->data, skb->len, "TX: ");
  2871.         printk("n");)
  2872. /* Build the buffer descriptor */  
  2873. buf_desc_ptr = (struct tx_buf_desc *)(iadev->seg_ram+TX_DESC_BASE);  
  2874. buf_desc_ptr += desc; /* points to the corresponding entry */  
  2875. buf_desc_ptr->desc_mode = AAL5 | EOM_EN | APP_CRC32 | CMPL_INT;   
  2876.         writew(TRANSMIT_DONE, iadev->seg_reg+SEG_INTR_STATUS_REG);
  2877. buf_desc_ptr->vc_index = vcc->vci;
  2878. buf_desc_ptr->bytes = total_len;  
  2879.         if (vcc->qos.txtp.traffic_class == ATM_ABR)  
  2880.    clear_lockup (vcc, iadev);
  2881. /* Build the DLE structure */  
  2882. wr_ptr = iadev->tx_dle_q.write;  
  2883. memset((caddr_t)wr_ptr, 0, sizeof(*wr_ptr));  
  2884. wr_ptr->sys_pkt_addr = addr;  
  2885. wr_ptr->local_pkt_addr = (buf_desc_ptr->buf_start_hi << 16) | 
  2886.                                                   buf_desc_ptr->buf_start_lo;  
  2887. /* wr_ptr->bytes = swap(total_len); didn't seem to affect ?? */  
  2888. wr_ptr->bytes = skb->len;  
  2889.         /* hw bug - DLEs of 0x2d, 0x2e, 0x2f cause DMA lockup */
  2890.         if ((wr_ptr->bytes >> 2) == 0xb)
  2891.            wr_ptr->bytes = 0x30;
  2892. wr_ptr->mode = TX_DLE_PSI; 
  2893. wr_ptr->prq_wr_ptr_data = 0;
  2894.   
  2895. /* end is not to be used for the DLE q */  
  2896. if (++wr_ptr == iadev->tx_dle_q.end)  
  2897. wr_ptr = iadev->tx_dle_q.start;  
  2898.         
  2899.         /* Build trailer dle */
  2900.         wr_ptr->sys_pkt_addr = virt_to_bus(iadev->tx_buf[desc-1]);
  2901.         wr_ptr->local_pkt_addr = ((buf_desc_ptr->buf_start_hi << 16) | 
  2902.           buf_desc_ptr->buf_start_lo) + total_len - sizeof(struct cpcs_trailer);
  2903.         wr_ptr->bytes = sizeof(struct cpcs_trailer);
  2904.         wr_ptr->mode = DMA_INT_ENABLE; 
  2905.         wr_ptr->prq_wr_ptr_data = iadev->ffL.prq_wr;
  2906.         
  2907.         /* end is not to be used for the DLE q */
  2908.         if (++wr_ptr == iadev->tx_dle_q.end)  
  2909.                 wr_ptr = iadev->tx_dle_q.start;
  2910. iadev->tx_dle_q.write = wr_ptr;  
  2911.         ATM_DESC(skb) = vcc->vci;
  2912.         skb_queue_tail(&iadev->tx_dma_q, skb);
  2913.         atomic_inc(&vcc->stats->tx);
  2914.         iadev->tx_pkt_cnt++;
  2915. /* Increment transaction counter */  
  2916. writel(2, iadev->dma+IPHASE5575_TX_COUNTER);  
  2917.         
  2918. #if 0        
  2919.         /* add flow control logic */ 
  2920.         if (atomic_read(&vcc->stats->tx) % 20 == 0) {
  2921.           if (iavcc->vc_desc_cnt > 10) {
  2922.              vcc->tx_quota =  vcc->tx_quota * 3 / 4;
  2923.             printk("Tx1:  vcc->tx_quota = %d n", (u32)vcc->tx_quota );
  2924.               iavcc->flow_inc = -1;
  2925.               iavcc->saved_tx_quota = vcc->tx_quota;
  2926.            } else if ((iavcc->flow_inc < 0) && (iavcc->vc_desc_cnt < 3)) {
  2927.              // vcc->tx_quota = 3 * iavcc->saved_tx_quota / 4;
  2928.              printk("Tx2:  vcc->tx_quota = %d n", (u32)vcc->tx_quota ); 
  2929.               iavcc->flow_inc = 0;
  2930.            }
  2931.         }
  2932. #endif
  2933. IF_TX(printk("ia send donen");)  
  2934. return 0;  
  2935. }  
  2936. static int ia_send(struct atm_vcc *vcc, struct sk_buff *skb)
  2937. {
  2938.         IADEV *iadev; 
  2939.         struct ia_vcc *iavcc;
  2940.         unsigned long flags;
  2941.         iadev = INPH_IA_DEV(vcc->dev);
  2942.         iavcc = INPH_IA_VCC(vcc); 
  2943.         if ((!skb)||(skb->len>(iadev->tx_buf_sz-sizeof(struct cpcs_trailer))))
  2944.         {
  2945.             if (!skb)
  2946.                 printk(KERN_CRIT "null skb in ia_sendn");
  2947.             else dev_kfree_skb_any(skb);
  2948.             return -EINVAL;
  2949.         }                         
  2950.         spin_lock_irqsave(&iadev->tx_lock, flags); 
  2951.         if (!test_bit(ATM_VF_READY,&vcc->flags)){ 
  2952.             dev_kfree_skb_any(skb);
  2953.             spin_unlock_irqrestore(&iadev->tx_lock, flags);
  2954.             return -EINVAL; 
  2955.         }
  2956.         ATM_SKB(skb)->vcc = vcc;
  2957.  
  2958.         if (skb_peek(&iadev->tx_backlog)) {
  2959.            skb_queue_tail(&iadev->tx_backlog, skb);
  2960.         }
  2961.         else {
  2962.            if (ia_pkt_tx (vcc, skb)) {
  2963.               skb_queue_tail(&iadev->tx_backlog, skb);
  2964.            }
  2965.         }
  2966.         spin_unlock_irqrestore(&iadev->tx_lock, flags);
  2967.         return 0;
  2968. }
  2969. static int ia_sg_send(struct atm_vcc *vcc, unsigned long start,   
  2970. unsigned long size)  
  2971. {  
  2972. IF_EVENT(printk(">ia_sg_sendn");)  
  2973. return 0;  
  2974. }  
  2975.   
  2976.   
  2977. static int ia_proc_read(struct atm_dev *dev,loff_t *pos,char *page)
  2978.   int   left = *pos, n;   
  2979.   char  *tmpPtr;
  2980.   IADEV *iadev = INPH_IA_DEV(dev);
  2981.   if(!left--) {
  2982.      if (iadev->phy_type == FE_25MBIT_PHY) {
  2983.        n = sprintf(page, "  Board Type         :  Iphase5525-1KVC-128Kn");
  2984.        return n;
  2985.      }
  2986.      if (iadev->phy_type == FE_DS3_PHY)
  2987.         n = sprintf(page, "  Board Type         :  Iphase-ATM-DS3");
  2988.      else if (iadev->phy_type == FE_E3_PHY)
  2989.         n = sprintf(page, "  Board Type         :  Iphase-ATM-E3");
  2990.      else if (iadev->phy_type == FE_UTP_OPTION)
  2991.          n = sprintf(page, "  Board Type         :  Iphase-ATM-UTP155"); 
  2992.      else
  2993.         n = sprintf(page, "  Board Type         :  Iphase-ATM-OC3");
  2994.      tmpPtr = page + n;
  2995.      if (iadev->pci_map_size == 0x40000)
  2996.         n += sprintf(tmpPtr, "-1KVC-");
  2997.      else
  2998.         n += sprintf(tmpPtr, "-4KVC-");  
  2999.      tmpPtr = page + n; 
  3000.      if ((iadev->memType & MEM_SIZE_MASK) == MEM_SIZE_1M)
  3001.         n += sprintf(tmpPtr, "1M  n");
  3002.      else if ((iadev->memType & MEM_SIZE_MASK) == MEM_SIZE_512K)
  3003.         n += sprintf(tmpPtr, "512Kn");
  3004.      else
  3005.        n += sprintf(tmpPtr, "128Kn");
  3006.      return n;
  3007.   }
  3008.   if (!left) {
  3009.      return  sprintf(page, "  Number of Tx Buffer:  %un"
  3010.                            "  Size of Tx Buffer  :  %un"
  3011.                            "  Number of Rx Buffer:  %un"
  3012.                            "  Size of Rx Buffer  :  %un"
  3013.                            "  Packets Receiverd  :  %un"
  3014.                            "  Packets Transmitted:  %un"
  3015.                            "  Cells Received     :  %un"
  3016.                            "  Cells Transmitted  :  %un"
  3017.                            "  Board Dropped Cells:  %un"
  3018.                            "  Board Dropped Pkts :  %un",
  3019.                            iadev->num_tx_desc,  iadev->tx_buf_sz,
  3020.                            iadev->num_rx_desc,  iadev->rx_buf_sz,
  3021.                            iadev->rx_pkt_cnt,   iadev->tx_pkt_cnt,
  3022.                            iadev->rx_cell_cnt, iadev->tx_cell_cnt,
  3023.                            iadev->drop_rxcell, iadev->drop_rxpkt);                        
  3024.   }
  3025.   return 0;
  3026. }
  3027.   
  3028. static const struct atmdev_ops ops = {  
  3029. open: ia_open,  
  3030. close: ia_close,  
  3031. ioctl: ia_ioctl,  
  3032. getsockopt: ia_getsockopt,  
  3033. setsockopt: ia_setsockopt,  
  3034. send: ia_send,  
  3035. sg_send: ia_sg_send,  
  3036. phy_put: ia_phy_put,  
  3037. phy_get: ia_phy_get,  
  3038. change_qos: ia_change_qos,  
  3039. proc_read: ia_proc_read,
  3040. owner: THIS_MODULE,
  3041. };  
  3042.   
  3043.   
  3044. #if LINUX_VERSION_CODE >= 0x20312
  3045. int __init ia_detect(void)
  3046. #else
  3047. __initfunc(int ia_detect(void)) 
  3048. #endif 
  3049. {  
  3050. struct atm_dev *dev;  
  3051. IADEV *iadev;  
  3052.         unsigned long flags;
  3053.         int index = 0;  
  3054. struct pci_dev *prev_dev;       
  3055. if (!pci_present()) {  
  3056. printk(KERN_ERR DEV_LABEL " driver but no PCI BIOS ?n");  
  3057. return 0;  
  3058. }  
  3059. iadev = kmalloc(sizeof(*iadev), GFP_KERNEL); 
  3060. if (!iadev) return -ENOMEM;  
  3061.         memset((char*)iadev, 0, sizeof(*iadev));
  3062. prev_dev = NULL;  
  3063. while((iadev->pci = pci_find_device(PCI_VENDOR_ID_IPHASE,  
  3064. PCI_DEVICE_ID_IPHASE_5575,  prev_dev))) {  
  3065. IF_INIT(printk("ia detected at bus:%d dev: %d function:%dn",
  3066.                      iadev->pci->bus->number, PCI_SLOT(iadev->pci->devfn), 
  3067.                                                  PCI_FUNC(iadev->pci->devfn));)  
  3068. if (pci_enable_device(iadev->pci)) break;
  3069. dev = atm_dev_register(DEV_LABEL, &ops, -1, NULL);
  3070. if (!dev) break;  
  3071. IF_INIT(printk(DEV_LABEL "registered at (itf :%d)n", 
  3072.                                                              dev->number);)  
  3073. INPH_IA_DEV(dev) = iadev; 
  3074.                 // TODO: multi_board using ia_boards logic in cleanup_module
  3075. ia_dev[index] = iadev;
  3076. _ia_dev[index] = dev;
  3077.                 IF_INIT(printk("dev_id = 0x%x iadev->LineRate = %d n", 
  3078.                                         (u32)dev, iadev->LineRate);)
  3079.                 iadev_count++;
  3080.                 spin_lock_init(&iadev->misc_lock);
  3081.                 spin_lock_irqsave(&iadev->misc_lock, flags); 
  3082. if (ia_init(dev) || ia_start(dev)) {  
  3083. atm_dev_deregister(dev);  
  3084.                         IF_INIT(printk("IA register failed!n");)
  3085.                         ia_dev[index] = NULL;
  3086.                         _ia_dev[index] = NULL;
  3087.                         iadev_count--;
  3088.                         spin_unlock_irqrestore(&iadev->misc_lock, flags); 
  3089. return -EINVAL;  
  3090. }  
  3091.                 spin_unlock_irqrestore(&iadev->misc_lock, flags);
  3092.                 IF_EVENT(printk("iadev_count = %dn", iadev_count);)
  3093. prev_dev = iadev->pci;  
  3094. iadev->next_board = ia_boards;  
  3095. ia_boards = dev;  
  3096. iadev = kmalloc(sizeof(*iadev), GFP_KERNEL);  
  3097. if (!iadev) break;   
  3098.                 memset((char*)iadev, 0, sizeof(*iadev)); 
  3099. index++;  
  3100.                 dev = NULL;
  3101. }  
  3102. return index;  
  3103. }  
  3104.   
  3105. #ifdef MODULE  
  3106.   
  3107. int init_module(void)  
  3108. {  
  3109. IF_EVENT(printk(">ia init_modulen");)  
  3110. if (!ia_detect()) {  
  3111. printk(KERN_ERR DEV_LABEL ": no adapter foundn");  
  3112. return -ENXIO;  
  3113. }  
  3114.     ia_timer.expires = jiffies + 3*HZ;
  3115.     add_timer(&ia_timer); 
  3116.    
  3117. return 0;  
  3118. }  
  3119.   
  3120.   
  3121. void cleanup_module(void)  
  3122. {  
  3123. struct atm_dev *dev;  
  3124. IADEV *iadev;  
  3125. unsigned short command;  
  3126.         int i, j= 0;
  3127.  
  3128. IF_EVENT(printk(">ia cleanup_modulen");)  
  3129. if (MOD_IN_USE)  
  3130. printk("ia: module in usen");  
  3131.         del_timer(&ia_timer);
  3132. while(ia_dev[j])  
  3133. {  
  3134. dev = ia_boards;  
  3135. iadev = INPH_IA_DEV(dev);  
  3136. ia_boards = iadev->next_board;  
  3137.                 
  3138.          /* disable interrupt of lost signal */
  3139.          ia_phy_put(dev, ia_phy_get(dev,0x10) & ~(0x4), 0x10); 
  3140.          udelay(1);
  3141.        /* De-register device */  
  3142.        atm_dev_deregister(dev);  
  3143. IF_EVENT(printk("iav deregistered at (itf:%d)n", dev->number);)
  3144. for (i= 0; i< iadev->num_tx_desc; i++)
  3145.                         kfree(iadev->tx_buf[i]);
  3146.                 kfree(iadev->tx_buf);
  3147.        /* Disable memory mapping and busmastering */  
  3148. if (pci_read_config_word(iadev->pci,  
  3149.      PCI_COMMAND, &command) != 0)  
  3150.        {  
  3151.           printk("ia: can't read PCI_COMMAND.n");  
  3152.        }  
  3153.        command &= ~(PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);  
  3154.        if (pci_write_config_word(iadev->pci,  
  3155.       PCI_COMMAND, command) != 0)  
  3156.        {  
  3157.           printk("ia: can't write PCI_COMMAND.n");  
  3158.        }  
  3159.        free_irq(iadev->irq, dev);  
  3160.        iounmap((void *) iadev->base);  
  3161.        kfree(iadev);  
  3162.                 j++;
  3163. }  
  3164. /* and voila whatever we tried seems to work. I don't know if it will  
  3165. fix suni errors though. Really doubt that. */  
  3166.         for (i = 0; i<8; i++) {
  3167.                ia_dev[i] =  NULL;
  3168.               _ia_dev[i] = NULL;
  3169.         }
  3170. }  
  3171. #endif