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

嵌入式Linux

开发平台:

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