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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Wavelan Pcmcia driver
  3.  *
  4.  * Jean II - HPLB '96
  5.  *
  6.  * Reorganisation and extension of the driver.
  7.  * Original copyright follow. See wavelan_cs.h for details.
  8.  *
  9.  * This code is derived from Anthony D. Joseph's code and all the changes here
  10.  * are also under the original copyright below.
  11.  *
  12.  * This code supports version 2.00 of WaveLAN/PCMCIA cards (2.4GHz), and
  13.  * can work on Linux 2.0.36 with support of David Hinds' PCMCIA Card Services
  14.  *
  15.  * Joe Finney (joe@comp.lancs.ac.uk) at Lancaster University in UK added
  16.  * critical code in the routine to initialize the Modem Management Controller.
  17.  *
  18.  * Thanks to Alan Cox and Bruce Janson for their advice.
  19.  *
  20.  * -- Yunzhou Li (scip4166@nus.sg)
  21.  *
  22. #ifdef WAVELAN_ROAMING
  23.  * Roaming support added 07/22/98 by Justin Seger (jseger@media.mit.edu)
  24.  * based on patch by Joe Finney from Lancaster University.
  25. #endif
  26.  *
  27.  * Lucent (formerly AT&T GIS, formerly NCR) WaveLAN PCMCIA card: An
  28.  * Ethernet-like radio transceiver controlled by an Intel 82593 coprocessor.
  29.  *
  30.  *   A non-shared memory PCMCIA ethernet driver for linux
  31.  *
  32.  * ISA version modified to support PCMCIA by Anthony Joseph (adj@lcs.mit.edu)
  33.  *
  34.  *
  35.  * Joseph O'Sullivan & John Langford (josullvn@cs.cmu.edu & jcl@cs.cmu.edu)
  36.  *
  37.  * Apr 2 '98  made changes to bring the i82593 control/int handling in line
  38.  *             with offical specs...
  39.  *
  40.  * Changes:
  41.  * Arnaldo Carvalho de Melo <acme@conectiva.com.br> - 08/08/2000
  42.  * - reorganize kmallocs in wavelan_attach, checking all for failure
  43.  *   and releasing the previous allocations if one fails
  44.  * <No longer true, we reverted to the version in the Pcmcia package
  45.  *  which was correct in the first place - Jean II>
  46.  *
  47.  ****************************************************************************
  48.  *   Copyright 1995
  49.  *   Anthony D. Joseph
  50.  *   Massachusetts Institute of Technology
  51.  *
  52.  *   Permission to use, copy, modify, and distribute this program
  53.  *   for any purpose and without fee is hereby granted, provided
  54.  *   that this copyright and permission notice appear on all copies
  55.  *   and supporting documentation, the name of M.I.T. not be used
  56.  *   in advertising or publicity pertaining to distribution of the
  57.  *   program without specific prior permission, and notice be given
  58.  *   in supporting documentation that copying and distribution is
  59.  *   by permission of M.I.T.  M.I.T. makes no representations about
  60.  *   the suitability of this software for any purpose.  It is pro-
  61.  *   vided "as is" without express or implied warranty.         
  62.  ****************************************************************************
  63.  *
  64.  */
  65. /* Do *NOT* add other headers here, you are guaranteed to be wrong - Jean II */
  66. #include "wavelan_cs.h" /* Private header */
  67. /************************* MISC SUBROUTINES **************************/
  68. /*
  69.  * Subroutines which won't fit in one of the following category
  70.  * (wavelan modem or i82593)
  71.  */
  72. /*------------------------------------------------------------------*/
  73. /*
  74.  * Wrapper for disabling interrupts.
  75.  * (note : inline, so optimised away)
  76.  */
  77. static inline void
  78. wv_splhi(net_local * lp,
  79.  unsigned long * pflags)
  80. {
  81.   spin_lock_irqsave(&lp->spinlock, *pflags);
  82.   /* Note : above does the cli(); itself */
  83. }
  84. /*------------------------------------------------------------------*/
  85. /*
  86.  * Wrapper for re-enabling interrupts.
  87.  */
  88. static inline void
  89. wv_splx(net_local * lp,
  90. unsigned long * pflags)
  91. {
  92.   spin_unlock_irqrestore(&lp->spinlock, *pflags);
  93.   /* Note : enabling interrupts on the hardware is done in wv_ru_start()
  94.    * via : outb(OP1_INT_ENABLE, LCCR(base));
  95.    */
  96. }
  97. /*------------------------------------------------------------------*/
  98. /*
  99.  * Wrapper for reporting error to cardservices
  100.  */
  101. static void cs_error(client_handle_t handle, int func, int ret)
  102. {
  103.     error_info_t err = { func, ret };
  104.     CardServices(ReportError, handle, &err);
  105. }
  106. #ifdef STRUCT_CHECK
  107. /*------------------------------------------------------------------*/
  108. /*
  109.  * Sanity routine to verify the sizes of the various WaveLAN interface
  110.  * structures.
  111.  */
  112. static char *
  113. wv_structuct_check(void)
  114. {
  115. #define SC(t,s,n) if (sizeof(t) != s) return(n);
  116.   SC(psa_t, PSA_SIZE, "psa_t");
  117.   SC(mmw_t, MMW_SIZE, "mmw_t");
  118.   SC(mmr_t, MMR_SIZE, "mmr_t");
  119. #undef SC
  120.   return((char *) NULL);
  121. } /* wv_structuct_check */
  122. #endif /* STRUCT_CHECK */
  123. /******************* MODEM MANAGEMENT SUBROUTINES *******************/
  124. /*
  125.  * Useful subroutines to manage the modem of the wavelan
  126.  */
  127. /*------------------------------------------------------------------*/
  128. /*
  129.  * Read from card's Host Adaptor Status Register.
  130.  */
  131. static inline u_char
  132. hasr_read(u_long base)
  133. {
  134.   return(inb(HASR(base)));
  135. } /* hasr_read */
  136. /*------------------------------------------------------------------*/
  137. /*
  138.  * Write to card's Host Adapter Command Register.
  139.  */
  140. static inline void
  141. hacr_write(u_long base,
  142.    u_char hacr)
  143. {
  144.   outb(hacr, HACR(base));
  145. } /* hacr_write */
  146. /*------------------------------------------------------------------*/
  147. /*
  148.  * Write to card's Host Adapter Command Register. Include a delay for
  149.  * those times when it is needed.
  150.  */
  151. static inline void
  152. hacr_write_slow(u_long base,
  153. u_char hacr)
  154. {
  155.   hacr_write(base, hacr);
  156.   /* delay might only be needed sometimes */
  157.   mdelay(1);
  158. } /* hacr_write_slow */
  159. /*------------------------------------------------------------------*/
  160. /*
  161.  * Read the Parameter Storage Area from the WaveLAN card's memory
  162.  */
  163. static void
  164. psa_read(device * dev,
  165.  int o, /* offset in PSA */
  166.  u_char * b, /* buffer to fill */
  167.  int n) /* size to read */
  168. {
  169.   u_char * ptr = ((u_char *)dev->mem_start) + PSA_ADDR + (o << 1);
  170.   while(n-- > 0)
  171.     {
  172.       *b++ = readb(ptr);
  173.       /* Due to a lack of address decode pins, the WaveLAN PCMCIA card
  174.        * only supports reading even memory addresses. That means the
  175.        * increment here MUST be two.
  176.        * Because of that, we can't use memcpy_fromio()...
  177.        */
  178.       ptr += 2;
  179.     }
  180. } /* psa_read */
  181. /*------------------------------------------------------------------*/
  182. /*
  183.  * Write the Paramter Storage Area to the WaveLAN card's memory
  184.  */
  185. static void
  186. psa_write(device * dev,
  187.   int o, /* Offset in psa */
  188.   u_char * b, /* Buffer in memory */
  189.   int n) /* Length of buffer */
  190. {
  191.   u_char * ptr = ((u_char *) dev->mem_start) + PSA_ADDR + (o << 1);
  192.   int count = 0;
  193.   ioaddr_t base = dev->base_addr;
  194.   /* As there seem to have no flag PSA_BUSY as in the ISA model, we are
  195.    * oblige to verify this address to know when the PSA is ready... */
  196.   volatile u_char * verify = ((u_char *) dev->mem_start) + PSA_ADDR +
  197.     (psaoff(0, psa_comp_number) << 1);
  198.   /* Authorize writting to PSA */
  199.   hacr_write(base, HACR_PWR_STAT | HACR_ROM_WEN);
  200.   while(n-- > 0)
  201.     {
  202.       /* write to PSA */
  203.       writeb(*b++, ptr);
  204.       ptr += 2;
  205.       /* I don't have the spec, so I don't know what the correct
  206.        * sequence to write is. This hack seem to work for me... */
  207.       count = 0;
  208.       while((readb(verify) != PSA_COMP_PCMCIA_915) && (count++ < 100))
  209. mdelay(1);
  210.     }
  211.   /* Put the host interface back in standard state */
  212.   hacr_write(base, HACR_DEFAULT);
  213. } /* psa_write */
  214. #ifdef SET_PSA_CRC
  215. /*------------------------------------------------------------------*/
  216. /*
  217.  * Calculate the PSA CRC
  218.  * Thanks to Valster, Nico <NVALSTER@wcnd.nl.lucent.com> for the code
  219.  * NOTE: By specifying a length including the CRC position the
  220.  * returned value should be zero. (i.e. a correct checksum in the PSA)
  221.  *
  222.  * The Windows drivers don't use the CRC, but the AP and the PtP tool
  223.  * depend on it.
  224.  */
  225. static u_short
  226. psa_crc(unsigned char * psa, /* The PSA */
  227. int size) /* Number of short for CRC */
  228. {
  229.   int byte_cnt; /* Loop on the PSA */
  230.   u_short crc_bytes = 0; /* Data in the PSA */
  231.   int bit_cnt; /* Loop on the bits of the short */
  232.   for(byte_cnt = 0; byte_cnt < size; byte_cnt++ )
  233.     {
  234.       crc_bytes ^= psa[byte_cnt]; /* Its an xor */
  235.       for(bit_cnt = 1; bit_cnt < 9; bit_cnt++ )
  236. {
  237.   if(crc_bytes & 0x0001)
  238.     crc_bytes = (crc_bytes >> 1) ^ 0xA001;
  239.   else
  240.     crc_bytes >>= 1 ;
  241.         }
  242.     }
  243.   return crc_bytes;
  244. } /* psa_crc */
  245. #endif /* SET_PSA_CRC */
  246. /*------------------------------------------------------------------*/
  247. /*
  248.  * update the checksum field in the Wavelan's PSA
  249.  */
  250. static void
  251. update_psa_checksum(device * dev)
  252. {
  253. #ifdef SET_PSA_CRC
  254.   psa_t psa;
  255.   u_short crc;
  256.   /* read the parameter storage area */
  257.   psa_read(dev, 0, (unsigned char *) &psa, sizeof(psa));
  258.   /* update the checksum */
  259.   crc = psa_crc((unsigned char *) &psa,
  260. sizeof(psa) - sizeof(psa.psa_crc[0]) - sizeof(psa.psa_crc[1])
  261. - sizeof(psa.psa_crc_status));
  262.   psa.psa_crc[0] = crc & 0xFF;
  263.   psa.psa_crc[1] = (crc & 0xFF00) >> 8;
  264.   /* Write it ! */
  265.   psa_write(dev, (char *)&psa.psa_crc - (char *)&psa,
  266.     (unsigned char *)&psa.psa_crc, 2);
  267. #ifdef DEBUG_IOCTL_INFO
  268.   printk (KERN_DEBUG "%s: update_psa_checksum(): crc = 0x%02x%02xn",
  269.           dev->name, psa.psa_crc[0], psa.psa_crc[1]);
  270.   /* Check again (luxury !) */
  271.   crc = psa_crc((unsigned char *) &psa,
  272.  sizeof(psa) - sizeof(psa.psa_crc_status));
  273.   if(crc != 0)
  274.     printk(KERN_WARNING "%s: update_psa_checksum(): CRC does not agree with PSA data (even after recalculating)n", dev->name);
  275. #endif /* DEBUG_IOCTL_INFO */
  276. #endif /* SET_PSA_CRC */
  277. } /* update_psa_checksum */
  278. /*------------------------------------------------------------------*/
  279. /*
  280.  * Write 1 byte to the MMC.
  281.  */
  282. static inline void
  283. mmc_out(u_long base,
  284. u_short o,
  285. u_char d)
  286. {
  287.   /* Wait for MMC to go idle */
  288.   while(inb(HASR(base)) & HASR_MMI_BUSY)
  289.     ;
  290.   outb((u_char)((o << 1) | MMR_MMI_WR), MMR(base));
  291.   outb(d, MMD(base));
  292. }
  293. /*------------------------------------------------------------------*/
  294. /*
  295.  * Routine to write bytes to the Modem Management Controller.
  296.  * We start by the end because it is the way it should be !
  297.  */
  298. static inline void
  299. mmc_write(u_long base,
  300.   u_char o,
  301.   u_char * b,
  302.   int n)
  303. {
  304.   o += n;
  305.   b += n;
  306.   while(n-- > 0 )
  307.     mmc_out(base, --o, *(--b));
  308. } /* mmc_write */
  309. /*------------------------------------------------------------------*/
  310. /*
  311.  * Read 1 byte from the MMC.
  312.  * Optimised version for 1 byte, avoid using memory...
  313.  */
  314. static inline u_char
  315. mmc_in(u_long base,
  316.        u_short o)
  317. {
  318.   while(inb(HASR(base)) & HASR_MMI_BUSY)
  319.     ;
  320.   outb(o << 1, MMR(base)); /* Set the read address */
  321.   outb(0, MMD(base)); /* Required dummy write */
  322.   while(inb(HASR(base)) & HASR_MMI_BUSY)
  323.     ;
  324.   return (u_char) (inb(MMD(base))); /* Now do the actual read */
  325. }
  326. /*------------------------------------------------------------------*/
  327. /*
  328.  * Routine to read bytes from the Modem Management Controller.
  329.  * The implementation is complicated by a lack of address lines,
  330.  * which prevents decoding of the low-order bit.
  331.  * (code has just been moved in the above function)
  332.  * We start by the end because it is the way it should be !
  333.  */
  334. static inline void
  335. mmc_read(u_long base,
  336.  u_char o,
  337.  u_char * b,
  338.  int n)
  339. {
  340.   o += n;
  341.   b += n;
  342.   while(n-- > 0)
  343.     *(--b) = mmc_in(base, --o);
  344. } /* mmc_read */
  345. /*------------------------------------------------------------------*/
  346. /*
  347.  * Get the type of encryption available...
  348.  */
  349. static inline int
  350. mmc_encr(u_long base) /* i/o port of the card */
  351. {
  352.   int temp;
  353.   temp = mmc_in(base, mmroff(0, mmr_des_avail));
  354.   if((temp != MMR_DES_AVAIL_DES) && (temp != MMR_DES_AVAIL_AES))
  355.     return 0;
  356.   else
  357.     return temp;
  358. }
  359. /*------------------------------------------------------------------*/
  360. /*
  361.  * Wait for the frequency EEprom to complete a command...
  362.  * I hope this one will be optimally inlined...
  363.  */
  364. static inline void
  365. fee_wait(u_long base, /* i/o port of the card */
  366.  int delay, /* Base delay to wait for */
  367.  int number) /* Number of time to wait */
  368. {
  369.   int count = 0; /* Wait only a limited time */
  370.   while((count++ < number) &&
  371. (mmc_in(base, mmroff(0, mmr_fee_status)) & MMR_FEE_STATUS_BUSY))
  372.     udelay(delay);
  373. }
  374. /*------------------------------------------------------------------*/
  375. /*
  376.  * Read bytes from the Frequency EEprom (frequency select cards).
  377.  */
  378. static void
  379. fee_read(u_long base, /* i/o port of the card */
  380.  u_short o, /* destination offset */
  381.  u_short * b, /* data buffer */
  382.  int n) /* number of registers */
  383. {
  384.   b += n; /* Position at the end of the area */
  385.   /* Write the address */
  386.   mmc_out(base, mmwoff(0, mmw_fee_addr), o + n - 1);
  387.   /* Loop on all buffer */
  388.   while(n-- > 0)
  389.     {
  390.       /* Write the read command */
  391.       mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_READ);
  392.       /* Wait until EEprom is ready (should be quick !) */
  393.       fee_wait(base, 10, 100);
  394.       /* Read the value */
  395.       *--b = ((mmc_in(base, mmroff(0, mmr_fee_data_h)) << 8) |
  396.       mmc_in(base, mmroff(0, mmr_fee_data_l)));
  397.     }
  398. }
  399. #ifdef WIRELESS_EXT /* If wireless extension exist in the kernel */
  400. /*------------------------------------------------------------------*/
  401. /*
  402.  * Write bytes from the Frequency EEprom (frequency select cards).
  403.  * This is a bit complicated, because the frequency eeprom has to
  404.  * be unprotected and the write enabled.
  405.  * Jean II
  406.  */
  407. static void
  408. fee_write(u_long base, /* i/o port of the card */
  409.   u_short o, /* destination offset */
  410.   u_short * b, /* data buffer */
  411.   int n) /* number of registers */
  412. {
  413.   b += n; /* Position at the end of the area */
  414. #ifdef EEPROM_IS_PROTECTED /* disabled */
  415. #ifdef DOESNT_SEEM_TO_WORK /* disabled */
  416.   /* Ask to read the protected register */
  417.   mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRREAD);
  418.   fee_wait(base, 10, 100);
  419.   /* Read the protected register */
  420.   printk("Protected 2 : %02X-%02Xn",
  421.  mmc_in(base, mmroff(0, mmr_fee_data_h)),
  422.  mmc_in(base, mmroff(0, mmr_fee_data_l)));
  423. #endif /* DOESNT_SEEM_TO_WORK */
  424.   /* Enable protected register */
  425.   mmc_out(base, mmwoff(0, mmw_fee_addr), MMW_FEE_ADDR_EN);
  426.   mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PREN);
  427.   fee_wait(base, 10, 100);
  428.   /* Unprotect area */
  429.   mmc_out(base, mmwoff(0, mmw_fee_addr), o + n);
  430.   mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRWRITE);
  431. #ifdef DOESNT_SEEM_TO_WORK /* disabled */
  432.   /* Or use : */
  433.   mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRCLEAR);
  434. #endif /* DOESNT_SEEM_TO_WORK */
  435.   fee_wait(base, 10, 100);
  436. #endif /* EEPROM_IS_PROTECTED */
  437.   /* Write enable */
  438.   mmc_out(base, mmwoff(0, mmw_fee_addr), MMW_FEE_ADDR_EN);
  439.   mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_WREN);
  440.   fee_wait(base, 10, 100);
  441.   /* Write the EEprom address */
  442.   mmc_out(base, mmwoff(0, mmw_fee_addr), o + n - 1);
  443.   /* Loop on all buffer */
  444.   while(n-- > 0)
  445.     {
  446.       /* Write the value */
  447.       mmc_out(base, mmwoff(0, mmw_fee_data_h), (*--b) >> 8);
  448.       mmc_out(base, mmwoff(0, mmw_fee_data_l), *b & 0xFF);
  449.       /* Write the write command */
  450.       mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_WRITE);
  451.       /* Wavelan doc says : wait at least 10 ms for EEBUSY = 0 */
  452.       mdelay(10);
  453.       fee_wait(base, 10, 100);
  454.     }
  455.   /* Write disable */
  456.   mmc_out(base, mmwoff(0, mmw_fee_addr), MMW_FEE_ADDR_DS);
  457.   mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_WDS);
  458.   fee_wait(base, 10, 100);
  459. #ifdef EEPROM_IS_PROTECTED /* disabled */
  460.   /* Reprotect EEprom */
  461.   mmc_out(base, mmwoff(0, mmw_fee_addr), 0x00);
  462.   mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRWRITE);
  463.   fee_wait(base, 10, 100);
  464. #endif /* EEPROM_IS_PROTECTED */
  465. }
  466. #endif /* WIRELESS_EXT */
  467. /******************* WaveLAN Roaming routines... ********************/
  468. #ifdef WAVELAN_ROAMING /* Conditional compile, see wavelan_cs.h */
  469. unsigned char WAVELAN_BEACON_ADDRESS[]= {0x09,0x00,0x0e,0x20,0x03,0x00};
  470.   
  471. void wv_roam_init(struct net_device *dev)
  472. {
  473.   net_local  *lp= (net_local *)dev->priv;
  474.   /* Do not remove this unless you have a good reason */
  475.   printk(KERN_NOTICE "%s: Warning, you have enabled roaming on"
  476.  " device %s !n", dev->name, dev->name);
  477.   printk(KERN_NOTICE "Roaming is currently an experimental unsupported feature"
  478.  " of the Wavelan driver.n");
  479.   printk(KERN_NOTICE "It may work, but may also make the driver behave in"
  480.  " erratic ways or crash.n");
  481.   lp->wavepoint_table.head=NULL;           /* Initialise WavePoint table */
  482.   lp->wavepoint_table.num_wavepoints=0;
  483.   lp->wavepoint_table.locked=0;
  484.   lp->curr_point=NULL;                        /* No default WavePoint */
  485.   lp->cell_search=0;
  486.   
  487.   lp->cell_timer.data=(unsigned long)lp;                /* Start cell expiry timer */
  488.   lp->cell_timer.function=wl_cell_expiry;
  489.   lp->cell_timer.expires=jiffies+CELL_TIMEOUT;
  490.   add_timer(&lp->cell_timer);
  491.   
  492.   wv_nwid_filter(NWID_PROMISC,lp) ;    /* Enter NWID promiscuous mode */
  493.   /* to build up a good WavePoint */
  494.                                            /* table... */
  495.   printk(KERN_DEBUG "WaveLAN: Roaming enabled on device %sn",dev->name);
  496. }
  497.  
  498. void wv_roam_cleanup(struct net_device *dev)
  499. {
  500.   wavepoint_history *ptr,*old_ptr;
  501.   net_local *lp= (net_local *)dev->priv;
  502.   
  503.   printk(KERN_DEBUG "WaveLAN: Roaming Disabled on device %sn",dev->name);
  504.   
  505.   /* Fixme : maybe we should check that the timer exist before deleting it */
  506.   del_timer(&lp->cell_timer);          /* Remove cell expiry timer       */
  507.   ptr=lp->wavepoint_table.head;        /* Clear device's WavePoint table */
  508.   while(ptr!=NULL)
  509.     {
  510.       old_ptr=ptr;
  511.       ptr=ptr->next;
  512.       wl_del_wavepoint(old_ptr,lp);
  513.     }
  514. }
  515. /* Enable/Disable NWID promiscuous mode on a given device */
  516. void wv_nwid_filter(unsigned char mode, net_local *lp)
  517. {
  518.   mm_t                  m;
  519.   unsigned long         flags;
  520.   
  521. #ifdef WAVELAN_ROAMING_DEBUG
  522.   printk(KERN_DEBUG "WaveLAN: NWID promisc %s, device %sn",(mode==NWID_PROMISC) ? "on" : "off", lp->dev->name);
  523. #endif
  524.   
  525.   /* Disable interrupts & save flags */
  526.   wv_splhi(lp, &flags);
  527.   
  528.   m.w.mmw_loopt_sel = (mode==NWID_PROMISC) ? MMW_LOOPT_SEL_DIS_NWID : 0x00;
  529.   mmc_write(lp->dev->base_addr, (char *)&m.w.mmw_loopt_sel - (char *)&m, (unsigned char *)&m.w.mmw_loopt_sel, 1);
  530.   
  531.   if(mode==NWID_PROMISC)
  532.     lp->cell_search=1;
  533.   else
  534.     lp->cell_search=0;
  535.   /* ReEnable interrupts & restore flags */
  536.   wv_splx(lp, &flags);
  537. }
  538. /* Find a record in the WavePoint table matching a given NWID */
  539. wavepoint_history *wl_roam_check(unsigned short nwid, net_local *lp)
  540. {
  541.   wavepoint_history *ptr=lp->wavepoint_table.head;
  542.   
  543.   while(ptr!=NULL){
  544.     if(ptr->nwid==nwid)
  545.       return ptr;
  546.     ptr=ptr->next;
  547.   }
  548.   return NULL;
  549. }
  550. /* Create a new wavepoint table entry */
  551. wavepoint_history *wl_new_wavepoint(unsigned short nwid, unsigned char seq, net_local* lp)
  552. {
  553.   wavepoint_history *new_wavepoint;
  554. #ifdef WAVELAN_ROAMING_DEBUG
  555.   printk(KERN_DEBUG "WaveLAN: New Wavepoint, NWID:%.4Xn",nwid);
  556. #endif
  557.   
  558.   if(lp->wavepoint_table.num_wavepoints==MAX_WAVEPOINTS)
  559.     return NULL;
  560.   
  561.   new_wavepoint=(wavepoint_history *) kmalloc(sizeof(wavepoint_history),GFP_ATOMIC);
  562.   if(new_wavepoint==NULL)
  563.     return NULL;
  564.   
  565.   new_wavepoint->nwid=nwid;                       /* New WavePoints NWID */
  566.   new_wavepoint->average_fast=0;                    /* Running Averages..*/
  567.   new_wavepoint->average_slow=0;
  568.   new_wavepoint->qualptr=0;                       /* Start of ringbuffer */
  569.   new_wavepoint->last_seq=seq-1;                /* Last sequence no.seen */
  570.   memset(new_wavepoint->sigqual,0,WAVEPOINT_HISTORY);/* Empty ringbuffer */
  571.   
  572.   new_wavepoint->next=lp->wavepoint_table.head;/* Add to wavepoint table */
  573.   new_wavepoint->prev=NULL;
  574.   
  575.   if(lp->wavepoint_table.head!=NULL)
  576.     lp->wavepoint_table.head->prev=new_wavepoint;
  577.   
  578.   lp->wavepoint_table.head=new_wavepoint;
  579.   
  580.   lp->wavepoint_table.num_wavepoints++;     /* no. of visible wavepoints */
  581.   
  582.   return new_wavepoint;
  583. }
  584. /* Remove a wavepoint entry from WavePoint table */
  585. void wl_del_wavepoint(wavepoint_history *wavepoint, struct net_local *lp)
  586. {
  587.   if(wavepoint==NULL)
  588.     return;
  589.   
  590.   if(lp->curr_point==wavepoint)
  591.     lp->curr_point=NULL;
  592.   
  593.   if(wavepoint->prev!=NULL)
  594.     wavepoint->prev->next=wavepoint->next;
  595.   
  596.   if(wavepoint->next!=NULL)
  597.     wavepoint->next->prev=wavepoint->prev;
  598.   
  599.   if(lp->wavepoint_table.head==wavepoint)
  600.     lp->wavepoint_table.head=wavepoint->next;
  601.   
  602.   lp->wavepoint_table.num_wavepoints--;
  603.   kfree(wavepoint);
  604. }
  605. /* Timer callback function - checks WavePoint table for stale entries */ 
  606. void wl_cell_expiry(unsigned long data)
  607. {
  608.   net_local *lp=(net_local *)data;
  609.   wavepoint_history *wavepoint=lp->wavepoint_table.head,*old_point;
  610.   
  611. #if WAVELAN_ROAMING_DEBUG > 1
  612.   printk(KERN_DEBUG "WaveLAN: Wavepoint timeout, dev %sn",lp->dev->name);
  613. #endif
  614.   
  615.   if(lp->wavepoint_table.locked)
  616.     {
  617. #if WAVELAN_ROAMING_DEBUG > 1
  618.       printk(KERN_DEBUG "WaveLAN: Wavepoint table locked...n");
  619. #endif
  620.       
  621.       lp->cell_timer.expires=jiffies+1; /* If table in use, come back later */
  622.       add_timer(&lp->cell_timer);
  623.       return;
  624.     }
  625.   
  626.   while(wavepoint!=NULL)
  627.     {
  628.       if(wavepoint->last_seen < jiffies-CELL_TIMEOUT)
  629. {
  630. #ifdef WAVELAN_ROAMING_DEBUG
  631.   printk(KERN_DEBUG "WaveLAN: Bye bye %.4Xn",wavepoint->nwid);
  632. #endif
  633.   
  634.   old_point=wavepoint;
  635.   wavepoint=wavepoint->next;
  636.   wl_del_wavepoint(old_point,lp);
  637. }
  638.       else
  639. wavepoint=wavepoint->next;
  640.     }
  641.   lp->cell_timer.expires=jiffies+CELL_TIMEOUT;
  642.   add_timer(&lp->cell_timer);
  643. }
  644. /* Update SNR history of a wavepoint */
  645. void wl_update_history(wavepoint_history *wavepoint, unsigned char sigqual, unsigned char seq)
  646. {
  647.   int i=0,num_missed=0,ptr=0;
  648.   int average_fast=0,average_slow=0;
  649.   
  650.   num_missed=(seq-wavepoint->last_seq)%WAVEPOINT_HISTORY;/* Have we missed
  651.     any beacons? */
  652.   if(num_missed)
  653.     for(i=0;i<num_missed;i++)
  654.       {
  655. wavepoint->sigqual[wavepoint->qualptr++]=0; /* If so, enter them as 0's */
  656. wavepoint->qualptr %=WAVEPOINT_HISTORY;    /* in the ringbuffer. */
  657.       }
  658.   wavepoint->last_seen=jiffies;                 /* Add beacon to history */
  659.   wavepoint->last_seq=seq;
  660.   wavepoint->sigqual[wavepoint->qualptr++]=sigqual;          
  661.   wavepoint->qualptr %=WAVEPOINT_HISTORY;
  662.   ptr=(wavepoint->qualptr-WAVEPOINT_FAST_HISTORY+WAVEPOINT_HISTORY)%WAVEPOINT_HISTORY;
  663.   
  664.   for(i=0;i<WAVEPOINT_FAST_HISTORY;i++)       /* Update running averages */
  665.     {
  666.       average_fast+=wavepoint->sigqual[ptr++];
  667.       ptr %=WAVEPOINT_HISTORY;
  668.     }
  669.   
  670.   average_slow=average_fast;
  671.   for(i=WAVEPOINT_FAST_HISTORY;i<WAVEPOINT_HISTORY;i++)
  672.     {
  673.       average_slow+=wavepoint->sigqual[ptr++];
  674.       ptr %=WAVEPOINT_HISTORY;
  675.     }
  676.   
  677.   wavepoint->average_fast=average_fast/WAVEPOINT_FAST_HISTORY;
  678.   wavepoint->average_slow=average_slow/WAVEPOINT_HISTORY;
  679. }
  680. /* Perform a handover to a new WavePoint */
  681. void wv_roam_handover(wavepoint_history *wavepoint, net_local *lp)
  682. {
  683.   ioaddr_t              base = lp->dev->base_addr;  
  684.   mm_t                  m;
  685.   unsigned long         flags;
  686.   if(wavepoint==lp->curr_point)          /* Sanity check... */
  687.     {
  688.       wv_nwid_filter(!NWID_PROMISC,lp);
  689.       return;
  690.     }
  691.   
  692. #ifdef WAVELAN_ROAMING_DEBUG
  693.   printk(KERN_DEBUG "WaveLAN: Doing handover to %.4X, dev %sn",wavepoint->nwid,lp->dev->name);
  694. #endif
  695.  
  696.   /* Disable interrupts & save flags */
  697.   wv_splhi(lp, &flags);
  698.   m.w.mmw_netw_id_l = wavepoint->nwid & 0xFF;
  699.   m.w.mmw_netw_id_h = (wavepoint->nwid & 0xFF00) >> 8;
  700.   
  701.   mmc_write(base, (char *)&m.w.mmw_netw_id_l - (char *)&m, (unsigned char *)&m.w.mmw_netw_id_l, 2);
  702.   
  703.   /* ReEnable interrupts & restore flags */
  704.   wv_splx(lp, &flags);
  705.   wv_nwid_filter(!NWID_PROMISC,lp);
  706.   lp->curr_point=wavepoint;
  707. }
  708. /* Called when a WavePoint beacon is received */
  709. static inline void wl_roam_gather(device *  dev,
  710.   u_char *  hdr,   /* Beacon header */
  711.   u_char *  stats) /* SNR, Signal quality 
  712.       of packet */
  713. {
  714.   wavepoint_beacon *beacon= (wavepoint_beacon *)hdr; /* Rcvd. Beacon */
  715.   unsigned short nwid=ntohs(beacon->nwid);  
  716.   unsigned short sigqual=stats[2] & MMR_SGNL_QUAL;   /* SNR of beacon */
  717.   wavepoint_history *wavepoint=NULL;                /* WavePoint table entry */
  718.   net_local *lp=(net_local *)dev->priv;              /* Device info */
  719. #ifdef I_NEED_THIS_FEATURE
  720.   /* Some people don't need this, some other may need it */
  721.   nwid=nwid^ntohs(beacon->domain_id);
  722. #endif
  723. #if WAVELAN_ROAMING_DEBUG > 1
  724.   printk(KERN_DEBUG "WaveLAN: beacon, dev %s:n",dev->name);
  725.   printk(KERN_DEBUG "Domain: %.4X NWID: %.4X SigQual=%dn",ntohs(beacon->domain_id),nwid,sigqual);
  726. #endif
  727.   
  728.   lp->wavepoint_table.locked=1;                            /* <Mutex> */
  729.   
  730.   wavepoint=wl_roam_check(nwid,lp);            /* Find WavePoint table entry */
  731.   if(wavepoint==NULL)                    /* If no entry, Create a new one... */
  732.     {
  733.       wavepoint=wl_new_wavepoint(nwid,beacon->seq,lp);
  734.       if(wavepoint==NULL)
  735. goto out;
  736.     }
  737.   if(lp->curr_point==NULL)             /* If this is the only WavePoint, */
  738.     wv_roam_handover(wavepoint, lp);          /* Jump on it! */
  739.   
  740.   wl_update_history(wavepoint, sigqual, beacon->seq); /* Update SNR history
  741.  stats. */
  742.   
  743.   if(lp->curr_point->average_slow < SEARCH_THRESH_LOW) /* If our current */
  744.     if(!lp->cell_search)                  /* WavePoint is getting faint, */
  745.       wv_nwid_filter(NWID_PROMISC,lp);    /* start looking for a new one */
  746.   
  747.   if(wavepoint->average_slow > 
  748.      lp->curr_point->average_slow + WAVELAN_ROAMING_DELTA)
  749.     wv_roam_handover(wavepoint, lp);   /* Handover to a better WavePoint */
  750.   
  751.   if(lp->curr_point->average_slow > SEARCH_THRESH_HIGH) /* If our SNR is */
  752.     if(lp->cell_search)  /* getting better, drop out of cell search mode */
  753.       wv_nwid_filter(!NWID_PROMISC,lp);
  754.   
  755. out:
  756.   lp->wavepoint_table.locked=0;                        /* </MUTEX>   :-) */
  757. }
  758. /* Test this MAC frame a WavePoint beacon */
  759. static inline int WAVELAN_BEACON(unsigned char *data)
  760. {
  761.   wavepoint_beacon *beacon= (wavepoint_beacon *)data;
  762.   static wavepoint_beacon beacon_template={0xaa,0xaa,0x03,0x08,0x00,0x0e,0x20,0x03,0x00};
  763.   
  764.   if(memcmp(beacon,&beacon_template,9)==0)
  765.     return 1;
  766.   else
  767.     return 0;
  768. }
  769. #endif /* WAVELAN_ROAMING */
  770. /************************ I82593 SUBROUTINES *************************/
  771. /*
  772.  * Useful subroutines to manage the Ethernet controller
  773.  */
  774. /*------------------------------------------------------------------*/
  775. /*
  776.  * Routine to synchronously send a command to the i82593 chip. 
  777.  * Should be called with interrupts disabled.
  778.  * (called by wv_packet_write(), wv_ru_stop(), wv_ru_start(),
  779.  *  wv_82593_config() & wv_diag())
  780.  */
  781. static int
  782. wv_82593_cmd(device * dev,
  783.      char * str,
  784.      int cmd,
  785.      int result)
  786. {
  787.   ioaddr_t base = dev->base_addr;
  788.   int status;
  789.   int wait_completed;
  790.   long spin;
  791.   /* Spin until the chip finishes executing its current command (if any) */
  792.   spin = 1000;
  793.   do
  794.     {
  795.       /* Time calibration of the loop */
  796.       udelay(10);
  797.       /* Read the interrupt register */
  798.       outb(OP0_NOP | CR0_STATUS_3, LCCR(base));
  799.       status = inb(LCSR(base));
  800.     }
  801.   while(((status & SR3_EXEC_STATE_MASK) != SR3_EXEC_IDLE) && (spin-- > 0));
  802.   /* If the interrupt hasn't be posted */
  803.   if(spin <= 0)
  804.     {
  805. #ifdef DEBUG_INTERRUPT_ERROR
  806.       printk(KERN_INFO "wv_82593_cmd: %s timeout (previous command), status 0x%02xn",
  807.      str, status);
  808. #endif
  809.       return(FALSE);
  810.     }
  811.   /* Issue the command to the controller */
  812.   outb(cmd, LCCR(base));
  813.   /* If we don't have to check the result of the command
  814.    * Note : this mean that the irq handler will deal with that */
  815.   if(result == SR0_NO_RESULT)
  816.     return(TRUE);
  817.   /* We are waiting for command completion */
  818.   wait_completed = TRUE;
  819.   /* Busy wait while the LAN controller executes the command. */
  820.   spin = 1000;
  821.   do
  822.     {
  823.       /* Time calibration of the loop */
  824.       udelay(10);
  825.       /* Read the interrupt register */
  826.       outb(CR0_STATUS_0 | OP0_NOP, LCCR(base));
  827.       status = inb(LCSR(base));
  828.       /* Check if there was an interrupt posted */
  829.       if((status & SR0_INTERRUPT))
  830. {
  831.   /* Acknowledge the interrupt */
  832.   outb(CR0_INT_ACK | OP0_NOP, LCCR(base));
  833.   /* Check if interrupt is a command completion */
  834.   if(((status & SR0_BOTH_RX_TX) != SR0_BOTH_RX_TX) &&
  835.      ((status & SR0_BOTH_RX_TX) != 0x0) &&
  836.      !(status & SR0_RECEPTION))
  837.     {
  838.       /* Signal command completion */
  839.       wait_completed = FALSE;
  840.     }
  841.   else
  842.     {
  843.       /* Note : Rx interrupts will be handled later, because we can
  844.        * handle multiple Rx packets at once */
  845. #ifdef DEBUG_INTERRUPT_INFO
  846.       printk(KERN_INFO "wv_82593_cmd: not our interruptn");
  847. #endif
  848.     }
  849. }
  850.     }
  851.   while(wait_completed && (spin-- > 0));
  852.   /* If the interrupt hasn't be posted */
  853.   if(wait_completed)
  854.     {
  855. #ifdef DEBUG_INTERRUPT_ERROR
  856.       printk(KERN_INFO "wv_82593_cmd: %s timeout, status 0x%02xn",
  857.      str, status);
  858. #endif
  859.       return(FALSE);
  860.     }
  861.   /* Check the return code returned by the card (see above) against
  862.    * the expected return code provided by the caller */
  863.   if((status & SR0_EVENT_MASK) != result)
  864.     {
  865. #ifdef DEBUG_INTERRUPT_ERROR
  866.       printk(KERN_INFO "wv_82593_cmd: %s failed, status = 0x%xn",
  867.      str, status);
  868. #endif
  869.       return(FALSE);
  870.     }
  871.   return(TRUE);
  872. } /* wv_82593_cmd */
  873. /*------------------------------------------------------------------*/
  874. /*
  875.  * This routine does a 593 op-code number 7, and obtains the diagnose
  876.  * status for the WaveLAN.
  877.  */
  878. static inline int
  879. wv_diag(device * dev)
  880. {
  881.   int ret = FALSE;
  882.   if(wv_82593_cmd(dev, "wv_diag(): diagnose",
  883.   OP0_DIAGNOSE, SR0_DIAGNOSE_PASSED))
  884.     ret = TRUE;
  885. #ifdef DEBUG_CONFIG_ERROR
  886.   printk(KERN_INFO "wavelan_cs: i82593 Self Test failed!n");
  887. #endif
  888.   return(ret);
  889. } /* wv_diag */
  890. /*------------------------------------------------------------------*/
  891. /*
  892.  * Routine to read len bytes from the i82593's ring buffer, starting at
  893.  * chip address addr. The results read from the chip are stored in buf.
  894.  * The return value is the address to use for next the call.
  895.  */
  896. static int
  897. read_ringbuf(device * dev,
  898.      int addr,
  899.      char * buf,
  900.      int len)
  901. {
  902.   ioaddr_t base = dev->base_addr;
  903.   int ring_ptr = addr;
  904.   int chunk_len;
  905.   char * buf_ptr = buf;
  906.   /* Get all the buffer */
  907.   while(len > 0)
  908.     {
  909.       /* Position the Program I/O Register at the ring buffer pointer */
  910.       outb(ring_ptr & 0xff, PIORL(base));
  911.       outb(((ring_ptr >> 8) & PIORH_MASK), PIORH(base));
  912.       /* First, determine how much we can read without wrapping around the
  913.  ring buffer */
  914.       if((addr + len) < (RX_BASE + RX_SIZE))
  915. chunk_len = len;
  916.       else
  917. chunk_len = RX_BASE + RX_SIZE - addr;
  918.       insb(PIOP(base), buf_ptr, chunk_len);
  919.       buf_ptr += chunk_len;
  920.       len -= chunk_len;
  921.       ring_ptr = (ring_ptr - RX_BASE + chunk_len) % RX_SIZE + RX_BASE;
  922.     }
  923.   return(ring_ptr);
  924. } /* read_ringbuf */
  925. /*------------------------------------------------------------------*/
  926. /*
  927.  * Reconfigure the i82593, or at least ask for it...
  928.  * Because wv_82593_config use the transmission buffer, we must do it
  929.  * when we are sure that there is no transmission, so we do it now
  930.  * or in wavelan_packet_xmit() (I can't find any better place,
  931.  * wavelan_interrupt is not an option...), so you may experience
  932.  * some delay sometime...
  933.  */
  934. static inline void
  935. wv_82593_reconfig(device * dev)
  936. {
  937.   net_local * lp = (net_local *)dev->priv;
  938.   dev_link_t * link = ((net_local *) dev->priv)->link;
  939.   unsigned long flags;
  940.   /* Arm the flag, will be cleard in wv_82593_config() */
  941.   lp->reconfig_82593 = TRUE;
  942.   /* Check if we can do it now ! */
  943.   if((link->open) && (netif_running(dev)) && !(netif_queue_stopped(dev)))
  944.     {
  945.       wv_splhi(lp, &flags); /* Disable interrupts */
  946.       wv_82593_config(dev);
  947.       wv_splx(lp, &flags); /* Re-enable interrupts */
  948.     }
  949.   else
  950.     {
  951. #ifdef DEBUG_IOCTL_INFO
  952.       printk(KERN_DEBUG
  953.      "%s: wv_82593_reconfig(): delayed (state = %lX, link = %d)n",
  954.      dev->name, dev->state, link->open);
  955. #endif
  956.     }
  957. }
  958. /********************* DEBUG & INFO SUBROUTINES *********************/
  959. /*
  960.  * This routines are used in the code to show debug informations.
  961.  * Most of the time, it dump the content of hardware structures...
  962.  */
  963. #ifdef DEBUG_PSA_SHOW
  964. /*------------------------------------------------------------------*/
  965. /*
  966.  * Print the formatted contents of the Parameter Storage Area.
  967.  */
  968. static void
  969. wv_psa_show(psa_t * p)
  970. {
  971.   printk(KERN_DEBUG "##### wavelan psa contents: #####n");
  972.   printk(KERN_DEBUG "psa_io_base_addr_1: 0x%02X %02X %02X %02Xn",
  973.  p->psa_io_base_addr_1,
  974.  p->psa_io_base_addr_2,
  975.  p->psa_io_base_addr_3,
  976.  p->psa_io_base_addr_4);
  977.   printk(KERN_DEBUG "psa_rem_boot_addr_1: 0x%02X %02X %02Xn",
  978.  p->psa_rem_boot_addr_1,
  979.  p->psa_rem_boot_addr_2,
  980.  p->psa_rem_boot_addr_3);
  981.   printk(KERN_DEBUG "psa_holi_params: 0x%02x, ", p->psa_holi_params);
  982.   printk("psa_int_req_no: %dn", p->psa_int_req_no);
  983. #ifdef DEBUG_SHOW_UNUSED
  984.   printk(KERN_DEBUG "psa_unused0[]: %02X:%02X:%02X:%02X:%02X:%02X:%02Xn",
  985.  p->psa_unused0[0],
  986.  p->psa_unused0[1],
  987.  p->psa_unused0[2],
  988.  p->psa_unused0[3],
  989.  p->psa_unused0[4],
  990.  p->psa_unused0[5],
  991.  p->psa_unused0[6]);
  992. #endif /* DEBUG_SHOW_UNUSED */
  993.   printk(KERN_DEBUG "psa_univ_mac_addr[]: %02x:%02x:%02x:%02x:%02x:%02xn",
  994.  p->psa_univ_mac_addr[0],
  995.  p->psa_univ_mac_addr[1],
  996.  p->psa_univ_mac_addr[2],
  997.  p->psa_univ_mac_addr[3],
  998.  p->psa_univ_mac_addr[4],
  999.  p->psa_univ_mac_addr[5]);
  1000.   printk(KERN_DEBUG "psa_local_mac_addr[]: %02x:%02x:%02x:%02x:%02x:%02xn",
  1001.  p->psa_local_mac_addr[0],
  1002.  p->psa_local_mac_addr[1],
  1003.  p->psa_local_mac_addr[2],
  1004.  p->psa_local_mac_addr[3],
  1005.  p->psa_local_mac_addr[4],
  1006.  p->psa_local_mac_addr[5]);
  1007.   printk(KERN_DEBUG "psa_univ_local_sel: %d, ", p->psa_univ_local_sel);
  1008.   printk("psa_comp_number: %d, ", p->psa_comp_number);
  1009.   printk("psa_thr_pre_set: 0x%02xn", p->psa_thr_pre_set);
  1010.   printk(KERN_DEBUG "psa_feature_select/decay_prm: 0x%02x, ",
  1011.  p->psa_feature_select);
  1012.   printk("psa_subband/decay_update_prm: %dn", p->psa_subband);
  1013.   printk(KERN_DEBUG "psa_quality_thr: 0x%02x, ", p->psa_quality_thr);
  1014.   printk("psa_mod_delay: 0x%02xn", p->psa_mod_delay);
  1015.   printk(KERN_DEBUG "psa_nwid: 0x%02x%02x, ", p->psa_nwid[0], p->psa_nwid[1]);
  1016.   printk("psa_nwid_select: %dn", p->psa_nwid_select);
  1017.   printk(KERN_DEBUG "psa_encryption_select: %d, ", p->psa_encryption_select);
  1018.   printk("psa_encryption_key[]: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02xn",
  1019.  p->psa_encryption_key[0],
  1020.  p->psa_encryption_key[1],
  1021.  p->psa_encryption_key[2],
  1022.  p->psa_encryption_key[3],
  1023.  p->psa_encryption_key[4],
  1024.  p->psa_encryption_key[5],
  1025.  p->psa_encryption_key[6],
  1026.  p->psa_encryption_key[7]);
  1027.   printk(KERN_DEBUG "psa_databus_width: %dn", p->psa_databus_width);
  1028.   printk(KERN_DEBUG "psa_call_code/auto_squelch: 0x%02x, ",
  1029.  p->psa_call_code[0]);
  1030.   printk("psa_call_code[]: %02X:%02X:%02X:%02X:%02X:%02X:%02X:%02Xn",
  1031.  p->psa_call_code[0],
  1032.  p->psa_call_code[1],
  1033.  p->psa_call_code[2],
  1034.  p->psa_call_code[3],
  1035.  p->psa_call_code[4],
  1036.  p->psa_call_code[5],
  1037.  p->psa_call_code[6],
  1038.  p->psa_call_code[7]);
  1039. #ifdef DEBUG_SHOW_UNUSED
  1040.   printk(KERN_DEBUG "psa_reserved[]: %02X:%02X:%02X:%02Xn",
  1041.  p->psa_reserved[0],
  1042.  p->psa_reserved[1],
  1043.  p->psa_reserved[2],
  1044.  p->psa_reserved[3]);
  1045. #endif /* DEBUG_SHOW_UNUSED */
  1046.   printk(KERN_DEBUG "psa_conf_status: %d, ", p->psa_conf_status);
  1047.   printk("psa_crc: 0x%02x%02x, ", p->psa_crc[0], p->psa_crc[1]);
  1048.   printk("psa_crc_status: 0x%02xn", p->psa_crc_status);
  1049. } /* wv_psa_show */
  1050. #endif /* DEBUG_PSA_SHOW */
  1051. #ifdef DEBUG_MMC_SHOW
  1052. /*------------------------------------------------------------------*/
  1053. /*
  1054.  * Print the formatted status of the Modem Management Controller.
  1055.  * This function need to be completed...
  1056.  */
  1057. static void
  1058. wv_mmc_show(device * dev)
  1059. {
  1060.   ioaddr_t base = dev->base_addr;
  1061.   net_local * lp = (net_local *)dev->priv;
  1062.   mmr_t m;
  1063.   /* Basic check */
  1064.   if(hasr_read(base) & HASR_NO_CLK)
  1065.     {
  1066.       printk(KERN_WARNING "%s: wv_mmc_show: modem not connectedn",
  1067.      dev->name);
  1068.       return;
  1069.     }
  1070.   wv_splhi(lp, &flags);
  1071.   /* Read the mmc */
  1072.   mmc_out(base, mmwoff(0, mmw_freeze), 1);
  1073.   mmc_read(base, 0, (u_char *)&m, sizeof(m));
  1074.   mmc_out(base, mmwoff(0, mmw_freeze), 0);
  1075. #ifdef WIRELESS_EXT /* If wireless extension exist in the kernel */
  1076.   /* Don't forget to update statistics */
  1077.   lp->wstats.discard.nwid += (m.mmr_wrong_nwid_h << 8) | m.mmr_wrong_nwid_l;
  1078. #endif /* WIRELESS_EXT */
  1079.   wv_splx(lp, &flags);
  1080.   printk(KERN_DEBUG "##### wavelan modem status registers: #####n");
  1081. #ifdef DEBUG_SHOW_UNUSED
  1082.   printk(KERN_DEBUG "mmc_unused0[]: %02X:%02X:%02X:%02X:%02X:%02X:%02X:%02Xn",
  1083.  m.mmr_unused0[0],
  1084.  m.mmr_unused0[1],
  1085.  m.mmr_unused0[2],
  1086.  m.mmr_unused0[3],
  1087.  m.mmr_unused0[4],
  1088.  m.mmr_unused0[5],
  1089.  m.mmr_unused0[6],
  1090.  m.mmr_unused0[7]);
  1091. #endif /* DEBUG_SHOW_UNUSED */
  1092.   printk(KERN_DEBUG "Encryption algorythm: %02X - Status: %02Xn",
  1093.  m.mmr_des_avail, m.mmr_des_status);
  1094. #ifdef DEBUG_SHOW_UNUSED
  1095.   printk(KERN_DEBUG "mmc_unused1[]: %02X:%02X:%02X:%02X:%02Xn",
  1096.  m.mmr_unused1[0],
  1097.  m.mmr_unused1[1],
  1098.  m.mmr_unused1[2],
  1099.  m.mmr_unused1[3],
  1100.  m.mmr_unused1[4]);
  1101. #endif /* DEBUG_SHOW_UNUSED */
  1102.   printk(KERN_DEBUG "dce_status: 0x%x [%s%s%s%s]n",
  1103.  m.mmr_dce_status,
  1104.  (m.mmr_dce_status & MMR_DCE_STATUS_RX_BUSY) ? "energy detected,":"",
  1105.  (m.mmr_dce_status & MMR_DCE_STATUS_LOOPT_IND) ?
  1106.  "loop test indicated," : "",
  1107.  (m.mmr_dce_status & MMR_DCE_STATUS_TX_BUSY) ? "transmitter on," : "",
  1108.  (m.mmr_dce_status & MMR_DCE_STATUS_JBR_EXPIRED) ?
  1109.  "jabber timer expired," : "");
  1110.   printk(KERN_DEBUG "Dsp ID: %02Xn",
  1111.  m.mmr_dsp_id);
  1112. #ifdef DEBUG_SHOW_UNUSED
  1113.   printk(KERN_DEBUG "mmc_unused2[]: %02X:%02Xn",
  1114.  m.mmr_unused2[0],
  1115.  m.mmr_unused2[1]);
  1116. #endif /* DEBUG_SHOW_UNUSED */
  1117.   printk(KERN_DEBUG "# correct_nwid: %d, # wrong_nwid: %dn",
  1118.  (m.mmr_correct_nwid_h << 8) | m.mmr_correct_nwid_l,
  1119.  (m.mmr_wrong_nwid_h << 8) | m.mmr_wrong_nwid_l);
  1120.   printk(KERN_DEBUG "thr_pre_set: 0x%x [current signal %s]n",
  1121.  m.mmr_thr_pre_set & MMR_THR_PRE_SET,
  1122.  (m.mmr_thr_pre_set & MMR_THR_PRE_SET_CUR) ? "above" : "below");
  1123.   printk(KERN_DEBUG "signal_lvl: %d [%s], ",
  1124.  m.mmr_signal_lvl & MMR_SIGNAL_LVL,
  1125.  (m.mmr_signal_lvl & MMR_SIGNAL_LVL_VALID) ? "new msg" : "no new msg");
  1126.   printk("silence_lvl: %d [%s], ", m.mmr_silence_lvl & MMR_SILENCE_LVL,
  1127.  (m.mmr_silence_lvl & MMR_SILENCE_LVL_VALID) ? "update done" : "no new update");
  1128.   printk("sgnl_qual: 0x%x [%s]n", m.mmr_sgnl_qual & MMR_SGNL_QUAL,
  1129.  (m.mmr_sgnl_qual & MMR_SGNL_QUAL_ANT) ? "Antenna 1" : "Antenna 0");
  1130. #ifdef DEBUG_SHOW_UNUSED
  1131.   printk(KERN_DEBUG "netw_id_l: %xn", m.mmr_netw_id_l);
  1132. #endif /* DEBUG_SHOW_UNUSED */
  1133. } /* wv_mmc_show */
  1134. #endif /* DEBUG_MMC_SHOW */
  1135. #ifdef DEBUG_I82593_SHOW
  1136. /*------------------------------------------------------------------*/
  1137. /*
  1138.  * Print the formatted status of the i82593's receive unit.
  1139.  */
  1140. static void
  1141. wv_ru_show(device * dev)
  1142. {
  1143.   net_local *lp = (net_local *) dev->priv;
  1144.   printk(KERN_DEBUG "##### wavelan i82593 receiver status: #####n");
  1145.   printk(KERN_DEBUG "ru: rfp %d stop %d", lp->rfp, lp->stop);
  1146.   /*
  1147.    * Not implemented yet...
  1148.    */
  1149.   printk("n");
  1150. } /* wv_ru_show */
  1151. #endif /* DEBUG_I82593_SHOW */
  1152. #ifdef DEBUG_DEVICE_SHOW
  1153. /*------------------------------------------------------------------*/
  1154. /*
  1155.  * Print the formatted status of the WaveLAN PCMCIA device driver.
  1156.  */
  1157. static void
  1158. wv_dev_show(device * dev)
  1159. {
  1160.   printk(KERN_DEBUG "dev:");
  1161.   printk(" state=%lX,", dev->state);
  1162.   printk(" trans_start=%ld,", dev->trans_start);
  1163.   printk(" flags=0x%x,", dev->flags);
  1164.   printk("n");
  1165. } /* wv_dev_show */
  1166. /*------------------------------------------------------------------*/
  1167. /*
  1168.  * Print the formatted status of the WaveLAN PCMCIA device driver's
  1169.  * private information.
  1170.  */
  1171. static void
  1172. wv_local_show(device * dev)
  1173. {
  1174.   net_local *lp;
  1175.   lp = (net_local *)dev->priv;
  1176.   printk(KERN_DEBUG "local:");
  1177.   /*
  1178.    * Not implemented yet...
  1179.    */
  1180.   printk("n");
  1181. } /* wv_local_show */
  1182. #endif /* DEBUG_DEVICE_SHOW */
  1183. #if defined(DEBUG_RX_INFO) || defined(DEBUG_TX_INFO)
  1184. /*------------------------------------------------------------------*/
  1185. /*
  1186.  * Dump packet header (and content if necessary) on the screen
  1187.  */
  1188. static inline void
  1189. wv_packet_info(u_char * p, /* Packet to dump */
  1190.        int length, /* Length of the packet */
  1191.        char * msg1, /* Name of the device */
  1192.        char * msg2) /* Name of the function */
  1193. {
  1194.   int i;
  1195.   int maxi;
  1196.   printk(KERN_DEBUG "%s: %s(): dest %02X:%02X:%02X:%02X:%02X:%02X, length %dn",
  1197.  msg1, msg2, p[0], p[1], p[2], p[3], p[4], p[5], length);
  1198.   printk(KERN_DEBUG "%s: %s(): src %02X:%02X:%02X:%02X:%02X:%02X, type 0x%02X%02Xn",
  1199.  msg1, msg2, p[6], p[7], p[8], p[9], p[10], p[11], p[12], p[13]);
  1200. #ifdef DEBUG_PACKET_DUMP
  1201.   printk(KERN_DEBUG "data="");
  1202.   if((maxi = length) > DEBUG_PACKET_DUMP)
  1203.     maxi = DEBUG_PACKET_DUMP;
  1204.   for(i = 14; i < maxi; i++)
  1205.     if(p[i] >= ' ' && p[i] <= '~')
  1206.       printk(" %c", p[i]);
  1207.     else
  1208.       printk("%02X", p[i]);
  1209.   if(maxi < length)
  1210.     printk("..");
  1211.   printk(""n");
  1212.   printk(KERN_DEBUG "n");
  1213. #endif /* DEBUG_PACKET_DUMP */
  1214. }
  1215. #endif /* defined(DEBUG_RX_INFO) || defined(DEBUG_TX_INFO) */
  1216. /*------------------------------------------------------------------*/
  1217. /*
  1218.  * This is the information which is displayed by the driver at startup
  1219.  * There  is a lot of flag to configure it at your will...
  1220.  */
  1221. static inline void
  1222. wv_init_info(device * dev)
  1223. {
  1224.   ioaddr_t base = dev->base_addr;
  1225.   psa_t psa;
  1226.   int i;
  1227.   /* Read the parameter storage area */
  1228.   psa_read(dev, 0, (unsigned char *) &psa, sizeof(psa));
  1229. #ifdef DEBUG_PSA_SHOW
  1230.   wv_psa_show(&psa);
  1231. #endif
  1232. #ifdef DEBUG_MMC_SHOW
  1233.   wv_mmc_show(dev);
  1234. #endif
  1235. #ifdef DEBUG_I82593_SHOW
  1236.   wv_ru_show(dev);
  1237. #endif
  1238. #ifdef DEBUG_BASIC_SHOW
  1239.   /* Now, let's go for the basic stuff */
  1240.   printk(KERN_NOTICE "%s: WaveLAN: port %#x, irq %d, hw_addr",
  1241.  dev->name, base, dev->irq);
  1242.   for(i = 0; i < WAVELAN_ADDR_SIZE; i++)
  1243.     printk("%s%02X", (i == 0) ? " " : ":", dev->dev_addr[i]);
  1244.   /* Print current network id */
  1245.   if(psa.psa_nwid_select)
  1246.     printk(", nwid 0x%02X-%02X", psa.psa_nwid[0], psa.psa_nwid[1]);
  1247.   else
  1248.     printk(", nwid off");
  1249.   /* If 2.00 card */
  1250.   if(!(mmc_in(base, mmroff(0, mmr_fee_status)) &
  1251.        (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY)))
  1252.     {
  1253.       unsigned short freq;
  1254.       /* Ask the EEprom to read the frequency from the first area */
  1255.       fee_read(base, 0x00 /* 1st area - frequency... */,
  1256.        &freq, 1);
  1257.       /* Print frequency */
  1258.       printk(", 2.00, %ld", (freq >> 6) + 2400L);
  1259.       /* Hack !!! */
  1260.       if(freq & 0x20)
  1261. printk(".5");
  1262.     }
  1263.   else
  1264.     {
  1265.       printk(", PCMCIA, ");
  1266.       switch (psa.psa_subband)
  1267. {
  1268. case PSA_SUBBAND_915:
  1269.   printk("915");
  1270.   break;
  1271. case PSA_SUBBAND_2425:
  1272.   printk("2425");
  1273.   break;
  1274. case PSA_SUBBAND_2460:
  1275.   printk("2460");
  1276.   break;
  1277. case PSA_SUBBAND_2484:
  1278.   printk("2484");
  1279.   break;
  1280. case PSA_SUBBAND_2430_5:
  1281.   printk("2430.5");
  1282.   break;
  1283. default:
  1284.   printk("unknown");
  1285. }
  1286.     }
  1287.   printk(" MHzn");
  1288. #endif /* DEBUG_BASIC_SHOW */
  1289. #ifdef DEBUG_VERSION_SHOW
  1290.   /* Print version information */
  1291.   printk(KERN_NOTICE "%s", version);
  1292. #endif
  1293. } /* wv_init_info */
  1294. /********************* IOCTL, STATS & RECONFIG *********************/
  1295. /*
  1296.  * We found here routines that are called by Linux on differents
  1297.  * occasions after the configuration and not for transmitting data
  1298.  * These may be called when the user use ifconfig, /proc/net/dev
  1299.  * or wireless extensions
  1300.  */
  1301. /*------------------------------------------------------------------*/
  1302. /*
  1303.  * Get the current ethernet statistics. This may be called with the
  1304.  * card open or closed.
  1305.  * Used when the user read /proc/net/dev
  1306.  */
  1307. static en_stats *
  1308. wavelan_get_stats(device * dev)
  1309. {
  1310. #ifdef DEBUG_IOCTL_TRACE
  1311.   printk(KERN_DEBUG "%s: <>wavelan_get_stats()n", dev->name);
  1312. #endif
  1313.   return(&((net_local *) dev->priv)->stats);
  1314. }
  1315. /*------------------------------------------------------------------*/
  1316. /*
  1317.  * Set or clear the multicast filter for this adaptor.
  1318.  * num_addrs == -1 Promiscuous mode, receive all packets
  1319.  * num_addrs == 0 Normal mode, clear multicast list
  1320.  * num_addrs > 0 Multicast mode, receive normal and MC packets,
  1321.  * and do best-effort filtering.
  1322.  */
  1323. static void
  1324. wavelan_set_multicast_list(device * dev)
  1325. {
  1326.   net_local * lp = (net_local *) dev->priv;
  1327. #ifdef DEBUG_IOCTL_TRACE
  1328.   printk(KERN_DEBUG "%s: ->wavelan_set_multicast_list()n", dev->name);
  1329. #endif
  1330. #ifdef DEBUG_IOCTL_INFO
  1331.   printk(KERN_DEBUG "%s: wavelan_set_multicast_list(): setting Rx mode %02X to %d addresses.n",
  1332.  dev->name, dev->flags, dev->mc_count);
  1333. #endif
  1334.   if(dev->flags & IFF_PROMISC)
  1335.     {
  1336.       /*
  1337.        * Enable promiscuous mode: receive all packets.
  1338.        */
  1339.       if(!lp->promiscuous)
  1340. {
  1341.   lp->promiscuous = 1;
  1342.   lp->allmulticast = 0;
  1343.   lp->mc_count = 0;
  1344.   wv_82593_reconfig(dev);
  1345.   /* Tell the kernel that we are doing a really bad job... */
  1346.   dev->flags |= IFF_PROMISC;
  1347. }
  1348.     }
  1349.   else
  1350.     /* If all multicast addresses
  1351.      * or too much multicast addresses for the hardware filter */
  1352.     if((dev->flags & IFF_ALLMULTI) ||
  1353.        (dev->mc_count > I82593_MAX_MULTICAST_ADDRESSES))
  1354.       {
  1355. /*
  1356.  * Disable promiscuous mode, but active the all multicast mode
  1357.  */
  1358. if(!lp->allmulticast)
  1359.   {
  1360.     lp->promiscuous = 0;
  1361.     lp->allmulticast = 1;
  1362.     lp->mc_count = 0;
  1363.     wv_82593_reconfig(dev);
  1364.     /* Tell the kernel that we are doing a really bad job... */
  1365.     dev->flags |= IFF_ALLMULTI;
  1366.   }
  1367.       }
  1368.     else
  1369.       /* If there is some multicast addresses to send */
  1370.       if(dev->mc_list != (struct dev_mc_list *) NULL)
  1371. {
  1372.   /*
  1373.    * Disable promiscuous mode, but receive all packets
  1374.    * in multicast list
  1375.    */
  1376. #ifdef MULTICAST_AVOID
  1377.   if(lp->promiscuous || lp->allmulticast ||
  1378.      (dev->mc_count != lp->mc_count))
  1379. #endif
  1380.     {
  1381.       lp->promiscuous = 0;
  1382.       lp->allmulticast = 0;
  1383.       lp->mc_count = dev->mc_count;
  1384.       wv_82593_reconfig(dev);
  1385.     }
  1386. }
  1387.       else
  1388. {
  1389.   /*
  1390.    * Switch to normal mode: disable promiscuous mode and 
  1391.    * clear the multicast list.
  1392.    */
  1393.   if(lp->promiscuous || lp->mc_count == 0)
  1394.     {
  1395.       lp->promiscuous = 0;
  1396.       lp->allmulticast = 0;
  1397.       lp->mc_count = 0;
  1398.       wv_82593_reconfig(dev);
  1399.     }
  1400. }
  1401. #ifdef DEBUG_IOCTL_TRACE
  1402.   printk(KERN_DEBUG "%s: <-wavelan_set_multicast_list()n", dev->name);
  1403. #endif
  1404. }
  1405. /*------------------------------------------------------------------*/
  1406. /*
  1407.  * This function doesn't exist...
  1408.  * (Note : it was a nice way to test the reconfigure stuff...)
  1409.  */
  1410. #ifdef SET_MAC_ADDRESS
  1411. static int
  1412. wavelan_set_mac_address(device * dev,
  1413. void * addr)
  1414. {
  1415.   struct sockaddr * mac = addr;
  1416.   /* Copy the address */
  1417.   memcpy(dev->dev_addr, mac->sa_data, WAVELAN_ADDR_SIZE);
  1418.   /* Reconfig the beast */
  1419.   wv_82593_reconfig(dev);
  1420.   return 0;
  1421. }
  1422. #endif /* SET_MAC_ADDRESS */
  1423. #ifdef WIRELESS_EXT /* If wireless extension exist in the kernel */
  1424. /*------------------------------------------------------------------*/
  1425. /*
  1426.  * Frequency setting (for hardware able of it)
  1427.  * It's a bit complicated and you don't really want to look into it...
  1428.  * (called in wavelan_ioctl)
  1429.  */
  1430. static inline int
  1431. wv_set_frequency(u_long base, /* i/o port of the card */
  1432.  iw_freq * frequency)
  1433. {
  1434.   const int BAND_NUM = 10; /* Number of bands */
  1435.   long freq = 0L; /* offset to 2.4 GHz in .5 MHz */
  1436. #ifdef DEBUG_IOCTL_INFO
  1437.   int i;
  1438. #endif
  1439.   /* Setting by frequency */
  1440.   /* Theoritically, you may set any frequency between
  1441.    * the two limits with a 0.5 MHz precision. In practice,
  1442.    * I don't want you to have trouble with local
  1443.    * regulations... */
  1444.   if((frequency->e == 1) &&
  1445.      (frequency->m >= (int) 2.412e8) && (frequency->m <= (int) 2.487e8))
  1446.     {
  1447.       freq = ((frequency->m / 10000) - 24000L) / 5;
  1448.     }
  1449.   /* Setting by channel (same as wfreqsel) */
  1450.   /* Warning : each channel is 22MHz wide, so some of the channels
  1451.    * will interfere... */
  1452.   if((frequency->e == 0) &&
  1453.      (frequency->m >= 0) && (frequency->m < BAND_NUM))
  1454.     {
  1455.       /* Get frequency offset. */
  1456.       freq = channel_bands[frequency->m] >> 1;
  1457.     }
  1458.   /* Verify if the frequency is allowed */
  1459.   if(freq != 0L)
  1460.     {
  1461.       u_short table[10]; /* Authorized frequency table */
  1462.       /* Read the frequency table */
  1463.       fee_read(base, 0x71 /* frequency table */,
  1464.        table, 10);
  1465. #ifdef DEBUG_IOCTL_INFO
  1466.       printk(KERN_DEBUG "Frequency table :");
  1467.       for(i = 0; i < 10; i++)
  1468. {
  1469.   printk(" %04X",
  1470.  table[i]);
  1471. }
  1472.       printk("n");
  1473. #endif
  1474.       /* Look in the table if the frequency is allowed */
  1475.       if(!(table[9 - ((freq - 24) / 16)] &
  1476.    (1 << ((freq - 24) % 16))))
  1477. return -EINVAL; /* not allowed */
  1478.     }
  1479.   else
  1480.     return -EINVAL;
  1481.   /* If we get a usable frequency */
  1482.   if(freq != 0L)
  1483.     {
  1484.       unsigned short area[16];
  1485.       unsigned short dac[2];
  1486.       unsigned short area_verify[16];
  1487.       unsigned short dac_verify[2];
  1488.       /* Corresponding gain (in the power adjust value table)
  1489.        * see AT&T Wavelan Data Manual, REF 407-024689/E, page 3-8
  1490.        * & WCIN062D.DOC, page 6.2.9 */
  1491.       unsigned short power_limit[] = { 40, 80, 120, 160, 0 };
  1492.       int power_band = 0; /* Selected band */
  1493.       unsigned short power_adjust; /* Correct value */
  1494.       /* Search for the gain */
  1495.       power_band = 0;
  1496.       while((freq > power_limit[power_band]) &&
  1497.     (power_limit[++power_band] != 0))
  1498. ;
  1499.       /* Read the first area */
  1500.       fee_read(base, 0x00,
  1501.        area, 16);
  1502.       /* Read the DAC */
  1503.       fee_read(base, 0x60,
  1504.        dac, 2);
  1505.       /* Read the new power adjust value */
  1506.       fee_read(base, 0x6B - (power_band >> 1),
  1507.        &power_adjust, 1);
  1508.       if(power_band & 0x1)
  1509. power_adjust >>= 8;
  1510.       else
  1511. power_adjust &= 0xFF;
  1512. #ifdef DEBUG_IOCTL_INFO
  1513.       printk(KERN_DEBUG "Wavelan EEprom Area 1 :");
  1514.       for(i = 0; i < 16; i++)
  1515. {
  1516.   printk(" %04X",
  1517.  area[i]);
  1518. }
  1519.       printk("n");
  1520.       printk(KERN_DEBUG "Wavelan EEprom DAC : %04X %04Xn",
  1521.      dac[0], dac[1]);
  1522. #endif
  1523.       /* Frequency offset (for info only...) */
  1524.       area[0] = ((freq << 5) & 0xFFE0) | (area[0] & 0x1F);
  1525.       /* Receiver Principle main divider coefficient */
  1526.       area[3] = (freq >> 1) + 2400L - 352L;
  1527.       area[2] = ((freq & 0x1) << 4) | (area[2] & 0xFFEF);
  1528.       /* Transmitter Main divider coefficient */
  1529.       area[13] = (freq >> 1) + 2400L;
  1530.       area[12] = ((freq & 0x1) << 4) | (area[2] & 0xFFEF);
  1531.       /* Others part of the area are flags, bit streams or unused... */
  1532.       /* Set the value in the DAC */
  1533.       dac[1] = ((power_adjust >> 1) & 0x7F) | (dac[1] & 0xFF80);
  1534.       dac[0] = ((power_adjust & 0x1) << 4) | (dac[0] & 0xFFEF);
  1535.       /* Write the first area */
  1536.       fee_write(base, 0x00,
  1537. area, 16);
  1538.       /* Write the DAC */
  1539.       fee_write(base, 0x60,
  1540. dac, 2);
  1541.       /* We now should verify here that the EEprom writting was ok */
  1542.       /* ReRead the first area */
  1543.       fee_read(base, 0x00,
  1544.        area_verify, 16);
  1545.       /* ReRead the DAC */
  1546.       fee_read(base, 0x60,
  1547.        dac_verify, 2);
  1548.       /* Compare */
  1549.       if(memcmp(area, area_verify, 16 * 2) ||
  1550.  memcmp(dac, dac_verify, 2 * 2))
  1551. {
  1552. #ifdef DEBUG_IOCTL_ERROR
  1553.   printk(KERN_INFO "Wavelan: wv_set_frequency : unable to write new frequency to EEprom (?)n");
  1554. #endif
  1555.   return -EOPNOTSUPP;
  1556. }
  1557.       /* We must download the frequency parameters to the
  1558.        * synthetisers (from the EEprom - area 1)
  1559.        * Note : as the EEprom is auto decremented, we set the end
  1560.        * if the area... */
  1561.       mmc_out(base, mmwoff(0, mmw_fee_addr), 0x0F);
  1562.       mmc_out(base, mmwoff(0, mmw_fee_ctrl),
  1563.       MMW_FEE_CTRL_READ | MMW_FEE_CTRL_DWLD);
  1564.       /* Wait until the download is finished */
  1565.       fee_wait(base, 100, 100);
  1566.       /* We must now download the power adjust value (gain) to
  1567.        * the synthetisers (from the EEprom - area 7 - DAC) */
  1568.       mmc_out(base, mmwoff(0, mmw_fee_addr), 0x61);
  1569.       mmc_out(base, mmwoff(0, mmw_fee_ctrl),
  1570.       MMW_FEE_CTRL_READ | MMW_FEE_CTRL_DWLD);
  1571.       /* Wait until the download is finished */
  1572.       fee_wait(base, 100, 100);
  1573. #ifdef DEBUG_IOCTL_INFO
  1574.       /* Verification of what we have done... */
  1575.       printk(KERN_DEBUG "Wavelan EEprom Area 1 :");
  1576.       for(i = 0; i < 16; i++)
  1577. {
  1578.   printk(" %04X",
  1579.  area_verify[i]);
  1580. }
  1581.       printk("n");
  1582.       printk(KERN_DEBUG "Wavelan EEprom DAC : %04X %04Xn",
  1583.      dac_verify[0], dac_verify[1]);
  1584. #endif
  1585.       return 0;
  1586.     }
  1587.   else
  1588.     return -EINVAL; /* Bah, never get there... */
  1589. }
  1590. /*------------------------------------------------------------------*/
  1591. /*
  1592.  * Give the list of available frequencies
  1593.  */
  1594. static inline int
  1595. wv_frequency_list(u_long base, /* i/o port of the card */
  1596.   iw_freq * list, /* List of frequency to fill */
  1597.   int max) /* Maximum number of frequencies */
  1598. {
  1599.   u_short table[10]; /* Authorized frequency table */
  1600.   long freq = 0L; /* offset to 2.4 GHz in .5 MHz + 12 MHz */
  1601.   int i; /* index in the table */
  1602. #if WIRELESS_EXT > 7
  1603.   const int BAND_NUM = 10; /* Number of bands */
  1604.   int c = 0; /* Channel number */
  1605. #endif /* WIRELESS_EXT */
  1606.   /* Read the frequency table */
  1607.   fee_read(base, 0x71 /* frequency table */,
  1608.    table, 10);
  1609.   /* Look all frequencies */
  1610.   i = 0;
  1611.   for(freq = 0; freq < 150; freq++)
  1612.     /* Look in the table if the frequency is allowed */
  1613.     if(table[9 - (freq / 16)] & (1 << (freq % 16)))
  1614.       {
  1615. #if WIRELESS_EXT > 7
  1616. /* Compute approximate channel number */
  1617. while((((channel_bands[c] >> 1) - 24) < freq) &&
  1618.       (c < BAND_NUM))
  1619.   c++;
  1620. list[i].i = c; /* Set the list index */
  1621. #endif /* WIRELESS_EXT */
  1622. /* put in the list */
  1623. list[i].m = (((freq + 24) * 5) + 24000L) * 10000;
  1624. list[i++].e = 1;
  1625. /* Check number */
  1626. if(i >= max)
  1627.   return(i);
  1628.       }
  1629.   return(i);
  1630. }
  1631. #ifdef WIRELESS_SPY
  1632. /*------------------------------------------------------------------*/
  1633. /*
  1634.  * Gather wireless spy statistics : for each packet, compare the source
  1635.  * address with out list, and if match, get the stats...
  1636.  * Sorry, but this function really need wireless extensions...
  1637.  */
  1638. static inline void
  1639. wl_spy_gather(device * dev,
  1640.       u_char * mac, /* MAC address */
  1641.       u_char * stats) /* Statistics to gather */
  1642. {
  1643.   net_local * lp = (net_local *) dev->priv;
  1644.   int i;
  1645.   /* Look all addresses */
  1646.   for(i = 0; i < lp->spy_number; i++)
  1647.     /* If match */
  1648.     if(!memcmp(mac, lp->spy_address[i], WAVELAN_ADDR_SIZE))
  1649.       {
  1650. /* Update statistics */
  1651. lp->spy_stat[i].qual = stats[2] & MMR_SGNL_QUAL;
  1652. lp->spy_stat[i].level = stats[0] & MMR_SIGNAL_LVL;
  1653. lp->spy_stat[i].noise = stats[1] & MMR_SILENCE_LVL;
  1654. lp->spy_stat[i].updated = 0x7;
  1655.       }
  1656. }
  1657. #endif /* WIRELESS_SPY */
  1658. #ifdef HISTOGRAM
  1659. /*------------------------------------------------------------------*/
  1660. /*
  1661.  * This function calculate an histogram on the signal level.
  1662.  * As the noise is quite constant, it's like doing it on the SNR.
  1663.  * We have defined a set of interval (lp->his_range), and each time
  1664.  * the level goes in that interval, we increment the count (lp->his_sum).
  1665.  * With this histogram you may detect if one wavelan is really weak,
  1666.  * or you may also calculate the mean and standard deviation of the level...
  1667.  */
  1668. static inline void
  1669. wl_his_gather(device * dev,
  1670.       u_char * stats) /* Statistics to gather */
  1671. {
  1672.   net_local * lp = (net_local *) dev->priv;
  1673.   u_char level = stats[0] & MMR_SIGNAL_LVL;
  1674.   int i;
  1675.   /* Find the correct interval */
  1676.   i = 0;
  1677.   while((i < (lp->his_number - 1)) && (level >= lp->his_range[i++]))
  1678.     ;
  1679.   /* Increment interval counter */
  1680.   (lp->his_sum[i])++;
  1681. }
  1682. #endif /* HISTOGRAM */
  1683. static int netdev_ethtool_ioctl(struct net_device *dev, void *useraddr)
  1684. {
  1685. u32 ethcmd;
  1686. if (copy_from_user(&ethcmd, useraddr, sizeof(ethcmd)))
  1687. return -EFAULT;
  1688. switch (ethcmd) {
  1689. case ETHTOOL_GDRVINFO: {
  1690. struct ethtool_drvinfo info = {ETHTOOL_GDRVINFO};
  1691. strncpy(info.driver, "wavelan_cs", sizeof(info.driver)-1);
  1692. if (copy_to_user(useraddr, &info, sizeof(info)))
  1693. return -EFAULT;
  1694. return 0;
  1695. }
  1696. }
  1697. return -EOPNOTSUPP;
  1698. }
  1699. /*------------------------------------------------------------------*/
  1700. /*
  1701.  * Perform ioctl : config & info stuff
  1702.  * This is here that are treated the wireless extensions (iwconfig)
  1703.  */
  1704. static int
  1705. wavelan_ioctl(struct net_device * dev, /* Device on wich the ioctl apply */
  1706.       struct ifreq * rq, /* Data passed */
  1707.       int cmd) /* Ioctl number */
  1708. {
  1709.   ioaddr_t base = dev->base_addr;
  1710.   net_local * lp = (net_local *)dev->priv; /* lp is not unused */
  1711.   struct iwreq * wrq = (struct iwreq *) rq;
  1712.   psa_t psa;
  1713.   mm_t m;
  1714.   unsigned long flags;
  1715.   int ret = 0;
  1716. #ifdef DEBUG_IOCTL_TRACE
  1717.   printk(KERN_DEBUG "%s: ->wavelan_ioctl(cmd=0x%X)n", dev->name, cmd);
  1718. #endif
  1719.   if (cmd == SIOCETHTOOL)
  1720.     return netdev_ethtool_ioctl(dev, (void *) rq->ifr_data);
  1721.   /* Disable interrupts & save flags */
  1722.   wv_splhi(lp, &flags);
  1723.   /* Look what is the request */
  1724.   switch(cmd)
  1725.     {
  1726.       /* --------------- WIRELESS EXTENSIONS --------------- */
  1727.     case SIOCGIWNAME:
  1728.       strcpy(wrq->u.name, "Wavelan");
  1729.       break;
  1730.     case SIOCSIWNWID:
  1731.       /* Set NWID in wavelan */
  1732. #if WIRELESS_EXT > 8
  1733.       if(!wrq->u.nwid.disabled)
  1734. {
  1735.   /* Set NWID in psa */
  1736.   psa.psa_nwid[0] = (wrq->u.nwid.value & 0xFF00) >> 8;
  1737.   psa.psa_nwid[1] = wrq->u.nwid.value & 0xFF;
  1738. #else /* WIRELESS_EXT > 8 */
  1739.       if(wrq->u.nwid.on)
  1740. {
  1741.   /* Set NWID in psa */
  1742.   psa.psa_nwid[0] = (wrq->u.nwid.nwid & 0xFF00) >> 8;
  1743.   psa.psa_nwid[1] = wrq->u.nwid.nwid & 0xFF;
  1744. #endif /* WIRELESS_EXT > 8 */
  1745.   psa.psa_nwid_select = 0x01;
  1746.   psa_write(dev, (char *)psa.psa_nwid - (char *)&psa,
  1747.     (unsigned char *)psa.psa_nwid, 3);
  1748.   /* Set NWID in mmc */
  1749.   m.w.mmw_netw_id_l = psa.psa_nwid[1];
  1750.   m.w.mmw_netw_id_h = psa.psa_nwid[0];
  1751.   mmc_write(base, (char *)&m.w.mmw_netw_id_l - (char *)&m,
  1752.     (unsigned char *)&m.w.mmw_netw_id_l, 2);
  1753.   mmc_out(base, mmwoff(0, mmw_loopt_sel), 0x00);
  1754. }
  1755.       else
  1756. {
  1757.   /* Disable nwid in the psa */
  1758.   psa.psa_nwid_select = 0x00;
  1759.   psa_write(dev, (char *)&psa.psa_nwid_select - (char *)&psa,
  1760.     (unsigned char *)&psa.psa_nwid_select, 1);
  1761.   /* Disable nwid in the mmc (no filtering) */
  1762.   mmc_out(base, mmwoff(0, mmw_loopt_sel), MMW_LOOPT_SEL_DIS_NWID);
  1763. }
  1764.       /* update the Wavelan checksum */
  1765.       update_psa_checksum(dev);
  1766.       break;
  1767.     case SIOCGIWNWID:
  1768.       /* Read the NWID */
  1769.       psa_read(dev, (char *)psa.psa_nwid - (char *)&psa,
  1770.        (unsigned char *)psa.psa_nwid, 3);
  1771. #if WIRELESS_EXT > 8
  1772.       wrq->u.nwid.value = (psa.psa_nwid[0] << 8) + psa.psa_nwid[1];
  1773.       wrq->u.nwid.disabled = !(psa.psa_nwid_select);
  1774.       wrq->u.nwid.fixed = 1; /* Superfluous */
  1775. #else /* WIRELESS_EXT > 8 */
  1776.       wrq->u.nwid.nwid = (psa.psa_nwid[0] << 8) + psa.psa_nwid[1];
  1777.       wrq->u.nwid.on = psa.psa_nwid_select;
  1778. #endif /* WIRELESS_EXT > 8 */
  1779.       break;
  1780.     case SIOCSIWFREQ:
  1781.       /* Attempt to recognise 2.00 cards (2.4 GHz frequency selectable) */
  1782.       if(!(mmc_in(base, mmroff(0, mmr_fee_status)) &
  1783.    (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY)))
  1784. ret = wv_set_frequency(base, &(wrq->u.freq));
  1785.       else
  1786. ret = -EOPNOTSUPP;
  1787.       break;
  1788.     case SIOCGIWFREQ:
  1789.       /* Attempt to recognise 2.00 cards (2.4 GHz frequency selectable)
  1790.        * (does it work for everybody ? - especially old cards...) */
  1791.       if(!(mmc_in(base, mmroff(0, mmr_fee_status)) &
  1792.    (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY)))
  1793. {
  1794.   unsigned short freq;
  1795.   /* Ask the EEprom to read the frequency from the first area */
  1796.   fee_read(base, 0x00 /* 1st area - frequency... */,
  1797.    &freq, 1);
  1798.   wrq->u.freq.m = ((freq >> 5) * 5 + 24000L) * 10000;
  1799.   wrq->u.freq.e = 1;
  1800. }
  1801.       else
  1802. {
  1803.   psa_read(dev, (char *)&psa.psa_subband - (char *)&psa,
  1804.    (unsigned char *)&psa.psa_subband, 1);
  1805.   if(psa.psa_subband <= 4)
  1806.     {
  1807.       wrq->u.freq.m = fixed_bands[psa.psa_subband];
  1808.       wrq->u.freq.e = (psa.psa_subband != 0);
  1809.     }
  1810.   else
  1811.     ret = -EOPNOTSUPP;
  1812. }
  1813.       break;
  1814.     case SIOCSIWSENS:
  1815.       /* Set the level threshold */
  1816. #if WIRELESS_EXT > 7
  1817.       /* We should complain loudly if wrq->u.sens.fixed = 0, because we
  1818.        * can't set auto mode... */
  1819.       psa.psa_thr_pre_set = wrq->u.sens.value & 0x3F;
  1820. #else /* WIRELESS_EXT > 7 */
  1821.       psa.psa_thr_pre_set = wrq->u.sensitivity & 0x3F;
  1822. #endif /* WIRELESS_EXT > 7 */
  1823.       psa_write(dev, (char *)&psa.psa_thr_pre_set - (char *)&psa,
  1824.        (unsigned char *)&psa.psa_thr_pre_set, 1);
  1825.       /* update the Wavelan checksum */
  1826.       update_psa_checksum(dev);
  1827.       mmc_out(base, mmwoff(0, mmw_thr_pre_set), psa.psa_thr_pre_set);
  1828.       break;
  1829.     case SIOCGIWSENS:
  1830.       /* Read the level threshold */
  1831.       psa_read(dev, (char *)&psa.psa_thr_pre_set - (char *)&psa,
  1832.        (unsigned char *)&psa.psa_thr_pre_set, 1);
  1833. #if WIRELESS_EXT > 7
  1834.       wrq->u.sens.value = psa.psa_thr_pre_set & 0x3F;
  1835.       wrq->u.sens.fixed = 1;
  1836. #else /* WIRELESS_EXT > 7 */
  1837.       wrq->u.sensitivity = psa.psa_thr_pre_set & 0x3F;
  1838. #endif /* WIRELESS_EXT > 7 */
  1839.       break;
  1840. #if WIRELESS_EXT > 8
  1841.     case SIOCSIWENCODE:
  1842.       /* Set encryption key */
  1843.       if(!mmc_encr(base))
  1844. {
  1845.   ret = -EOPNOTSUPP;
  1846.   break;
  1847. }
  1848.       /* Basic checking... */
  1849.       if(wrq->u.encoding.pointer != (caddr_t) 0)
  1850. {
  1851.   /* Check the size of the key */
  1852.   if(wrq->u.encoding.length != 8)
  1853.     {
  1854.       ret = -EINVAL;
  1855.       break;
  1856.     }
  1857.   /* Copy the key in the driver */
  1858.   if(copy_from_user(psa.psa_encryption_key, wrq->u.encoding.pointer,
  1859.     wrq->u.encoding.length))
  1860.     {
  1861.       ret = -EFAULT;
  1862.       break;
  1863.     }
  1864.   psa.psa_encryption_select = 1;
  1865.   psa_write(dev, (char *) &psa.psa_encryption_select - (char *) &psa,
  1866.     (unsigned char *) &psa.psa_encryption_select, 8+1);
  1867.   mmc_out(base, mmwoff(0, mmw_encr_enable),
  1868.   MMW_ENCR_ENABLE_EN | MMW_ENCR_ENABLE_MODE);
  1869.   mmc_write(base, mmwoff(0, mmw_encr_key),
  1870.     (unsigned char *) &psa.psa_encryption_key, 8);
  1871. }
  1872.       if(wrq->u.encoding.flags & IW_ENCODE_DISABLED)
  1873. { /* disable encryption */
  1874.   psa.psa_encryption_select = 0;
  1875.   psa_write(dev, (char *) &psa.psa_encryption_select - (char *) &psa,
  1876.     (unsigned char *) &psa.psa_encryption_select, 1);
  1877.   mmc_out(base, mmwoff(0, mmw_encr_enable), 0);
  1878. }
  1879.       /* update the Wavelan checksum */
  1880.       update_psa_checksum(dev);
  1881.       break;
  1882.     case SIOCGIWENCODE:
  1883.       /* Read the encryption key */
  1884.       if(!mmc_encr(base))
  1885. {
  1886.   ret = -EOPNOTSUPP;
  1887.   break;
  1888. }
  1889.       /* only super-user can see encryption key */
  1890.       if(!capable(CAP_NET_ADMIN))
  1891. {
  1892.   ret = -EPERM;
  1893.   break;
  1894. }
  1895.       /* Basic checking... */
  1896.       if(wrq->u.encoding.pointer != (caddr_t) 0)
  1897. {
  1898.   psa_read(dev, (char *) &psa.psa_encryption_select - (char *) &psa,
  1899.    (unsigned char *) &psa.psa_encryption_select, 1+8);
  1900.   /* encryption is enabled ? */
  1901.   if(psa.psa_encryption_select)
  1902.     wrq->u.encoding.flags = IW_ENCODE_ENABLED;
  1903.   else
  1904.     wrq->u.encoding.flags = IW_ENCODE_DISABLED;
  1905.   wrq->u.encoding.flags |= mmc_encr(base);
  1906.   /* Copy the key to the user buffer */
  1907.   wrq->u.encoding.length = 8;
  1908.   if(copy_to_user(wrq->u.encoding.pointer, psa.psa_encryption_key, 8))
  1909.     ret = -EFAULT;
  1910. }
  1911.       break;
  1912. #endif /* WIRELESS_EXT > 8 */
  1913. #ifdef WAVELAN_ROAMING_EXT
  1914. #if WIRELESS_EXT > 5
  1915.     case SIOCSIWESSID:
  1916.       /* Check if disable */
  1917.       if(wrq->u.data.flags == 0)
  1918. lp->filter_domains = 0;
  1919.       else
  1920. /* Basic checking... */
  1921. if(wrq->u.data.pointer != (caddr_t) 0)
  1922.   {
  1923.     char essid[IW_ESSID_MAX_SIZE + 1];
  1924.     char * endp;
  1925.     /* Check the size of the string */
  1926.     if(wrq->u.data.length > IW_ESSID_MAX_SIZE + 1)
  1927.       {
  1928. ret = -E2BIG;
  1929. break;
  1930.       }
  1931.     /* Copy the string in the driver */
  1932.     if(copy_from_user(essid, wrq->u.data.pointer, wrq->u.data.length))
  1933.       {
  1934. ret = -EFAULT;
  1935. break;
  1936.       }
  1937.     essid[IW_ESSID_MAX_SIZE] = '';
  1938. #ifdef DEBUG_IOCTL_INFO
  1939.     printk(KERN_DEBUG "SetEssid : ``%s''n", essid);
  1940. #endif /* DEBUG_IOCTL_INFO */
  1941.     /* Convert to a number (note : Wavelan specific) */
  1942.     lp->domain_id = simple_strtoul(essid, &endp, 16);
  1943.     /* Has it worked  ? */
  1944.     if(endp > essid)
  1945.       lp->filter_domains = 1;
  1946.     else
  1947.       {
  1948. lp->filter_domains = 0;
  1949. ret = -EINVAL;
  1950.       }
  1951.   }
  1952.       break;
  1953.     case SIOCGIWESSID:
  1954.       /* Basic checking... */
  1955.       if(wrq->u.data.pointer != (caddr_t) 0)
  1956. {
  1957.   char essid[IW_ESSID_MAX_SIZE + 1];
  1958.   /* Is the domain ID active ? */
  1959.   wrq->u.data.flags = lp->filter_domains;
  1960.   /* Copy Domain ID into a string (Wavelan specific) */
  1961.   /* Sound crazy, be we can't have a snprintf in the kernel !!! */
  1962.   sprintf(essid, "%lX", lp->domain_id);
  1963.   essid[IW_ESSID_MAX_SIZE] = '';
  1964.   /* Set the length */
  1965.   wrq->u.data.length = strlen(essid) + 1;
  1966.   /* Copy structure to the user buffer */
  1967.   if(copy_to_user(wrq->u.data.pointer, essid, wrq->u.data.length))
  1968.     ret = -EFAULT;
  1969. }
  1970.       break;
  1971.     case SIOCSIWAP:
  1972. #ifdef DEBUG_IOCTL_INFO
  1973.       printk(KERN_DEBUG "Set AP to : %02X:%02X:%02X:%02X:%02X:%02Xn",
  1974.      wrq->u.ap_addr.sa_data[0],
  1975.      wrq->u.ap_addr.sa_data[1],
  1976.      wrq->u.ap_addr.sa_data[2],
  1977.      wrq->u.ap_addr.sa_data[3],
  1978.      wrq->u.ap_addr.sa_data[4],
  1979.      wrq->u.ap_addr.sa_data[5]);
  1980. #endif /* DEBUG_IOCTL_INFO */
  1981.       ret = -EOPNOTSUPP; /* Not supported yet */
  1982.       break;
  1983.     case SIOCGIWAP:
  1984.       /* Should get the real McCoy instead of own Ethernet address */
  1985.       memcpy(wrq->u.ap_addr.sa_data, dev->dev_addr, WAVELAN_ADDR_SIZE);
  1986.       wrq->u.ap_addr.sa_family = ARPHRD_ETHER;
  1987.       ret = -EOPNOTSUPP; /* Not supported yet */
  1988.       break;
  1989. #endif /* WIRELESS_EXT > 5 */
  1990. #endif /* WAVELAN_ROAMING_EXT */
  1991. #if WIRELESS_EXT > 8
  1992. #ifdef WAVELAN_ROAMING
  1993.     case SIOCSIWMODE:
  1994.       switch(wrq->u.mode)
  1995. {
  1996. case IW_MODE_ADHOC:
  1997.   if(do_roaming)
  1998.     {
  1999.       wv_roam_cleanup(dev);
  2000.       do_roaming = 0;
  2001.     }
  2002.   break;
  2003. case IW_MODE_INFRA:
  2004.   if(!do_roaming)
  2005.     {
  2006.       wv_roam_init(dev);
  2007.       do_roaming = 1;
  2008.     }
  2009.   break;
  2010. default:
  2011.   ret = -EINVAL;
  2012. }
  2013.       break;
  2014.     case SIOCGIWMODE:
  2015.       if(do_roaming)
  2016. wrq->u.mode = IW_MODE_INFRA;
  2017.       else
  2018. wrq->u.mode = IW_MODE_ADHOC;
  2019.       break;
  2020. #endif /* WAVELAN_ROAMING */
  2021. #endif /* WIRELESS_EXT > 8 */
  2022.     case SIOCGIWRANGE:
  2023.       /* Basic checking... */
  2024.       if(wrq->u.data.pointer != (caddr_t) 0)
  2025. {
  2026.   struct iw_range range;
  2027.    /* Set the length (very important for backward compatibility) */
  2028.    wrq->u.data.length = sizeof(struct iw_range);
  2029.    /* Set all the info we don't care or don't know about to zero */
  2030.    memset(&range, 0, sizeof(range));
  2031. #if WIRELESS_EXT > 10
  2032.    /* Set the Wireless Extension versions */
  2033.    range.we_version_compiled = WIRELESS_EXT;
  2034.    range.we_version_source = 9; /* Nothing for us in v10 and v11 */
  2035. #endif /* WIRELESS_EXT > 10 */
  2036.   /* Set information in the range struct */
  2037.   range.throughput = 1.4 * 1000 * 1000; /* don't argue on this ! */
  2038.   range.min_nwid = 0x0000;
  2039.   range.max_nwid = 0xFFFF;
  2040.   /* Attempt to recognise 2.00 cards (2.4 GHz frequency selectable) */
  2041.   if(!(mmc_in(base, mmroff(0, mmr_fee_status)) &
  2042.        (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY)))
  2043.     {
  2044.       range.num_channels = 10;
  2045.       range.num_frequency = wv_frequency_list(base, range.freq,
  2046.       IW_MAX_FREQUENCIES);
  2047.     }
  2048.   else
  2049.     range.num_channels = range.num_frequency = 0;
  2050.   range.sensitivity = 0x3F;
  2051.   range.max_qual.qual = MMR_SGNL_QUAL;
  2052.   range.max_qual.level = MMR_SIGNAL_LVL;
  2053.   range.max_qual.noise = MMR_SILENCE_LVL;
  2054. #if WIRELESS_EXT > 11
  2055.   range.avg_qual.qual = MMR_SGNL_QUAL; /* Always max */
  2056.   /* Need to get better values for those two */
  2057.   range.avg_qual.level = 30;
  2058.   range.avg_qual.noise = 8;
  2059. #endif /* WIRELESS_EXT > 11 */
  2060. #if WIRELESS_EXT > 7
  2061.   range.num_bitrates = 1;
  2062.   range.bitrate[0] = 2000000; /* 2 Mb/s */
  2063. #endif /* WIRELESS_EXT > 7 */
  2064. #if WIRELESS_EXT > 8
  2065.   /* Encryption supported ? */
  2066.   if(mmc_encr(base))
  2067.     {
  2068.       range.encoding_size[0] = 8; /* DES = 64 bits key */
  2069.       range.num_encoding_sizes = 1;
  2070.       range.max_encoding_tokens = 1; /* Only one key possible */
  2071.     }
  2072.   else
  2073.     {
  2074.       range.num_encoding_sizes = 0;
  2075.       range.max_encoding_tokens = 0;
  2076.     }
  2077. #endif /* WIRELESS_EXT > 8 */
  2078.   /* Copy structure to the user buffer */
  2079.   if(copy_to_user(wrq->u.data.pointer, &range,
  2080.   sizeof(struct iw_range)))
  2081.     ret = -EFAULT;
  2082. }
  2083.       break;
  2084.     case SIOCGIWPRIV:
  2085.       /* Basic checking... */
  2086.       if(wrq->u.data.pointer != (caddr_t) 0)
  2087. {
  2088.   struct iw_priv_args priv[] =
  2089.   { /* cmd, set_args, get_args, name */
  2090.     { SIOCSIPQTHR, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, 0, "setqualthr" },
  2091.     { SIOCGIPQTHR, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, "getqualthr" },
  2092.     { SIOCSIPHISTO, IW_PRIV_TYPE_BYTE | 16, 0, "sethisto" },
  2093.     { SIOCGIPHISTO, 0,     IW_PRIV_TYPE_INT | 16, "gethisto" },
  2094.     { SIOCSIPROAM, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1 , 0, "setroam" },
  2095.     { SIOCGIPROAM, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, "getroam" },
  2096.   };
  2097.   /* Set the number of ioctl available */
  2098.   wrq->u.data.length = 6;
  2099.   /* Copy structure to the user buffer */
  2100.   if(copy_to_user(wrq->u.data.pointer, (u_char *) priv,
  2101.        sizeof(priv)))
  2102.     ret = -EFAULT;
  2103. }
  2104.       break;
  2105. #ifdef WIRELESS_SPY
  2106.     case SIOCSIWSPY:
  2107.       /* Set the spy list */
  2108.       /* Check the number of addresses */
  2109.       if(wrq->u.data.length > IW_MAX_SPY)
  2110. {
  2111.   ret = -E2BIG;
  2112.   break;
  2113. }
  2114.       lp->spy_number = wrq->u.data.length;
  2115.       /* If there is some addresses to copy */
  2116.       if(lp->spy_number > 0)
  2117. {
  2118.   struct sockaddr address[IW_MAX_SPY];
  2119.   int i;
  2120.   /* Copy addresses to the driver */
  2121.   if(copy_from_user(address, wrq->u.data.pointer,
  2122.     sizeof(struct sockaddr) * lp->spy_number))
  2123.     {
  2124.       ret = -EFAULT;
  2125.       break;
  2126.     }
  2127.   /* Copy addresses to the lp structure */
  2128.   for(i = 0; i < lp->spy_number; i++)
  2129.     {
  2130.       memcpy(lp->spy_address[i], address[i].sa_data,
  2131.      WAVELAN_ADDR_SIZE);
  2132.     }
  2133.   /* Reset structure... */
  2134.   memset(lp->spy_stat, 0x00, sizeof(iw_qual) * IW_MAX_SPY);
  2135. #ifdef DEBUG_IOCTL_INFO
  2136.   printk(KERN_DEBUG "SetSpy - Set of new addresses is :n");
  2137.   for(i = 0; i < wrq->u.data.length; i++)
  2138.     printk(KERN_DEBUG "%02X:%02X:%02X:%02X:%02X:%02Xn",
  2139.    lp->spy_address[i][0],
  2140.    lp->spy_address[i][1],
  2141.    lp->spy_address[i][2],
  2142.    lp->spy_address[i][3],
  2143.    lp->spy_address[i][4],
  2144.    lp->spy_address[i][5]);
  2145. #endif /* DEBUG_IOCTL_INFO */
  2146. }
  2147.       break;
  2148.     case SIOCGIWSPY:
  2149.       /* Get the spy list and spy stats */
  2150.       /* Set the number of addresses */
  2151.       wrq->u.data.length = lp->spy_number;
  2152.       /* If the user want to have the addresses back... */
  2153.       if((lp->spy_number > 0) && (wrq->u.data.pointer != (caddr_t) 0))
  2154. {
  2155.   struct sockaddr address[IW_MAX_SPY];
  2156.   int i;