2 * Wavelan Pcmcia driver
6 * Reorganisation and extension of the driver.
7 * Original copyright follow. See wavelan_cs.p.h for details.
9 * This code is derived from Anthony D. Joseph's code and all the changes here
10 * are also under the original copyright below.
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
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.
18 * Thanks to Alan Cox and Bruce Janson for their advice.
20 * -- Yunzhou Li (scip4166@nus.sg)
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.
27 * Lucent (formerly AT&T GIS, formerly NCR) WaveLAN PCMCIA card: An
28 * Ethernet-like radio transceiver controlled by an Intel 82593 coprocessor.
30 * A non-shared memory PCMCIA ethernet driver for linux
32 * ISA version modified to support PCMCIA by Anthony Joseph (adj@lcs.mit.edu)
35 * Joseph O'Sullivan & John Langford (josullvn@cs.cmu.edu & jcl@cs.cmu.edu)
37 * Apr 2 '98 made changes to bring the i82593 control/int handling in line
38 * with offical specs...
40 ****************************************************************************
43 * Massachusetts Institute of Technology
45 * Permission to use, copy, modify, and distribute this program
46 * for any purpose and without fee is hereby granted, provided
47 * that this copyright and permission notice appear on all copies
48 * and supporting documentation, the name of M.I.T. not be used
49 * in advertising or publicity pertaining to distribution of the
50 * program without specific prior permission, and notice be given
51 * in supporting documentation that copying and distribution is
52 * by permission of M.I.T. M.I.T. makes no representations about
53 * the suitability of this software for any purpose. It is pro-
54 * vided "as is" without express or implied warranty.
55 ****************************************************************************
59 /* Do *NOT* add other headers here, you are guaranteed to be wrong - Jean II */
60 #include "wavelan_cs.p.h" /* Private header */
62 #ifdef WAVELAN_ROAMING
63 static void wl_cell_expiry(unsigned long data);
64 static void wl_del_wavepoint(wavepoint_history *wavepoint, struct net_local *lp);
65 static void wv_nwid_filter(unsigned char mode, net_local *lp);
66 #endif /* WAVELAN_ROAMING */
68 /************************* MISC SUBROUTINES **************************/
70 * Subroutines which won't fit in one of the following category
71 * (wavelan modem or i82593)
74 /******************* MODEM MANAGEMENT SUBROUTINES *******************/
76 * Useful subroutines to manage the modem of the wavelan
79 /*------------------------------------------------------------------*/
81 * Read from card's Host Adaptor Status Register.
84 hasr_read(u_long base)
86 return(inb(HASR(base)));
89 /*------------------------------------------------------------------*/
91 * Write to card's Host Adapter Command Register.
94 hacr_write(u_long base,
97 outb(hacr, HACR(base));
100 /*------------------------------------------------------------------*/
102 * Write to card's Host Adapter Command Register. Include a delay for
103 * those times when it is needed.
106 hacr_write_slow(u_long base,
109 hacr_write(base, hacr);
110 /* delay might only be needed sometimes */
112 } /* hacr_write_slow */
114 /*------------------------------------------------------------------*/
116 * Read the Parameter Storage Area from the WaveLAN card's memory
119 psa_read(struct net_device * dev,
120 int o, /* offset in PSA */
121 u_char * b, /* buffer to fill */
122 int n) /* size to read */
124 net_local *lp = netdev_priv(dev);
125 u_char __iomem *ptr = lp->mem + PSA_ADDR + (o << 1);
130 /* Due to a lack of address decode pins, the WaveLAN PCMCIA card
131 * only supports reading even memory addresses. That means the
132 * increment here MUST be two.
133 * Because of that, we can't use memcpy_fromio()...
139 /*------------------------------------------------------------------*/
141 * Write the Paramter Storage Area to the WaveLAN card's memory
144 psa_write(struct net_device * dev,
145 int o, /* Offset in psa */
146 u_char * b, /* Buffer in memory */
147 int n) /* Length of buffer */
149 net_local *lp = netdev_priv(dev);
150 u_char __iomem *ptr = lp->mem + PSA_ADDR + (o << 1);
152 unsigned int base = dev->base_addr;
153 /* As there seem to have no flag PSA_BUSY as in the ISA model, we are
154 * oblige to verify this address to know when the PSA is ready... */
155 volatile u_char __iomem *verify = lp->mem + PSA_ADDR +
156 (psaoff(0, psa_comp_number) << 1);
158 /* Authorize writing to PSA */
159 hacr_write(base, HACR_PWR_STAT | HACR_ROM_WEN);
167 /* I don't have the spec, so I don't know what the correct
168 * sequence to write is. This hack seem to work for me... */
170 while((readb(verify) != PSA_COMP_PCMCIA_915) && (count++ < 100))
174 /* Put the host interface back in standard state */
175 hacr_write(base, HACR_DEFAULT);
179 /*------------------------------------------------------------------*/
181 * Calculate the PSA CRC
182 * Thanks to Valster, Nico <NVALSTER@wcnd.nl.lucent.com> for the code
183 * NOTE: By specifying a length including the CRC position the
184 * returned value should be zero. (i.e. a correct checksum in the PSA)
186 * The Windows drivers don't use the CRC, but the AP and the PtP tool
190 psa_crc(unsigned char * psa, /* The PSA */
191 int size) /* Number of short for CRC */
193 int byte_cnt; /* Loop on the PSA */
194 u_short crc_bytes = 0; /* Data in the PSA */
195 int bit_cnt; /* Loop on the bits of the short */
197 for(byte_cnt = 0; byte_cnt < size; byte_cnt++ )
199 crc_bytes ^= psa[byte_cnt]; /* Its an xor */
201 for(bit_cnt = 1; bit_cnt < 9; bit_cnt++ )
203 if(crc_bytes & 0x0001)
204 crc_bytes = (crc_bytes >> 1) ^ 0xA001;
212 #endif /* SET_PSA_CRC */
214 /*------------------------------------------------------------------*/
216 * update the checksum field in the Wavelan's PSA
219 update_psa_checksum(struct net_device * dev)
225 /* read the parameter storage area */
226 psa_read(dev, 0, (unsigned char *) &psa, sizeof(psa));
228 /* update the checksum */
229 crc = psa_crc((unsigned char *) &psa,
230 sizeof(psa) - sizeof(psa.psa_crc[0]) - sizeof(psa.psa_crc[1])
231 - sizeof(psa.psa_crc_status));
233 psa.psa_crc[0] = crc & 0xFF;
234 psa.psa_crc[1] = (crc & 0xFF00) >> 8;
237 psa_write(dev, (char *)&psa.psa_crc - (char *)&psa,
238 (unsigned char *)&psa.psa_crc, 2);
240 #ifdef DEBUG_IOCTL_INFO
241 printk (KERN_DEBUG "%s: update_psa_checksum(): crc = 0x%02x%02x\n",
242 dev->name, psa.psa_crc[0], psa.psa_crc[1]);
244 /* Check again (luxury !) */
245 crc = psa_crc((unsigned char *) &psa,
246 sizeof(psa) - sizeof(psa.psa_crc_status));
249 printk(KERN_WARNING "%s: update_psa_checksum(): CRC does not agree with PSA data (even after recalculating)\n", dev->name);
250 #endif /* DEBUG_IOCTL_INFO */
251 #endif /* SET_PSA_CRC */
252 } /* update_psa_checksum */
254 /*------------------------------------------------------------------*/
256 * Write 1 byte to the MMC.
265 /* Wait for MMC to go idle */
266 while((count++ < 100) && (inb(HASR(base)) & HASR_MMI_BUSY))
269 outb((u_char)((o << 1) | MMR_MMI_WR), MMR(base));
273 /*------------------------------------------------------------------*/
275 * Routine to write bytes to the Modem Management Controller.
276 * We start by the end because it is the way it should be !
279 mmc_write(u_long base,
288 mmc_out(base, --o, *(--b));
291 /*------------------------------------------------------------------*/
293 * Read 1 byte from the MMC.
294 * Optimised version for 1 byte, avoid using memory...
302 while((count++ < 100) && (inb(HASR(base)) & HASR_MMI_BUSY))
304 outb(o << 1, MMR(base)); /* Set the read address */
306 outb(0, MMD(base)); /* Required dummy write */
308 while((count++ < 100) && (inb(HASR(base)) & HASR_MMI_BUSY))
310 return (u_char) (inb(MMD(base))); /* Now do the actual read */
313 /*------------------------------------------------------------------*/
315 * Routine to read bytes from the Modem Management Controller.
316 * The implementation is complicated by a lack of address lines,
317 * which prevents decoding of the low-order bit.
318 * (code has just been moved in the above function)
319 * We start by the end because it is the way it should be !
322 mmc_read(u_long base,
331 *(--b) = mmc_in(base, --o);
334 /*------------------------------------------------------------------*/
336 * Get the type of encryption available...
339 mmc_encr(u_long base) /* i/o port of the card */
343 temp = mmc_in(base, mmroff(0, mmr_des_avail));
344 if((temp != MMR_DES_AVAIL_DES) && (temp != MMR_DES_AVAIL_AES))
350 /*------------------------------------------------------------------*/
352 * Wait for the frequency EEprom to complete a command...
355 fee_wait(u_long base, /* i/o port of the card */
356 int delay, /* Base delay to wait for */
357 int number) /* Number of time to wait */
359 int count = 0; /* Wait only a limited time */
361 while((count++ < number) &&
362 (mmc_in(base, mmroff(0, mmr_fee_status)) & MMR_FEE_STATUS_BUSY))
366 /*------------------------------------------------------------------*/
368 * Read bytes from the Frequency EEprom (frequency select cards).
371 fee_read(u_long base, /* i/o port of the card */
372 u_short o, /* destination offset */
373 u_short * b, /* data buffer */
374 int n) /* number of registers */
376 b += n; /* Position at the end of the area */
378 /* Write the address */
379 mmc_out(base, mmwoff(0, mmw_fee_addr), o + n - 1);
381 /* Loop on all buffer */
384 /* Write the read command */
385 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_READ);
387 /* Wait until EEprom is ready (should be quick !) */
388 fee_wait(base, 10, 100);
391 *--b = ((mmc_in(base, mmroff(0, mmr_fee_data_h)) << 8) |
392 mmc_in(base, mmroff(0, mmr_fee_data_l)));
397 /*------------------------------------------------------------------*/
399 * Write bytes from the Frequency EEprom (frequency select cards).
400 * This is a bit complicated, because the frequency eeprom has to
401 * be unprotected and the write enabled.
405 fee_write(u_long base, /* i/o port of the card */
406 u_short o, /* destination offset */
407 u_short * b, /* data buffer */
408 int n) /* number of registers */
410 b += n; /* Position at the end of the area */
412 #ifdef EEPROM_IS_PROTECTED /* disabled */
413 #ifdef DOESNT_SEEM_TO_WORK /* disabled */
414 /* Ask to read the protected register */
415 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRREAD);
417 fee_wait(base, 10, 100);
419 /* Read the protected register */
420 printk("Protected 2 : %02X-%02X\n",
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 */
425 /* Enable protected register */
426 mmc_out(base, mmwoff(0, mmw_fee_addr), MMW_FEE_ADDR_EN);
427 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PREN);
429 fee_wait(base, 10, 100);
432 mmc_out(base, mmwoff(0, mmw_fee_addr), o + n);
433 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRWRITE);
434 #ifdef DOESNT_SEEM_TO_WORK /* disabled */
436 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRCLEAR);
437 #endif /* DOESNT_SEEM_TO_WORK */
439 fee_wait(base, 10, 100);
440 #endif /* EEPROM_IS_PROTECTED */
443 mmc_out(base, mmwoff(0, mmw_fee_addr), MMW_FEE_ADDR_EN);
444 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_WREN);
446 fee_wait(base, 10, 100);
448 /* Write the EEprom address */
449 mmc_out(base, mmwoff(0, mmw_fee_addr), o + n - 1);
451 /* Loop on all buffer */
454 /* Write the value */
455 mmc_out(base, mmwoff(0, mmw_fee_data_h), (*--b) >> 8);
456 mmc_out(base, mmwoff(0, mmw_fee_data_l), *b & 0xFF);
458 /* Write the write command */
459 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_WRITE);
461 /* Wavelan doc says : wait at least 10 ms for EEBUSY = 0 */
463 fee_wait(base, 10, 100);
467 mmc_out(base, mmwoff(0, mmw_fee_addr), MMW_FEE_ADDR_DS);
468 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_WDS);
470 fee_wait(base, 10, 100);
472 #ifdef EEPROM_IS_PROTECTED /* disabled */
473 /* Reprotect EEprom */
474 mmc_out(base, mmwoff(0, mmw_fee_addr), 0x00);
475 mmc_out(base, mmwoff(0, mmw_fee_ctrl), MMW_FEE_CTRL_PRWRITE);
477 fee_wait(base, 10, 100);
478 #endif /* EEPROM_IS_PROTECTED */
481 /******************* WaveLAN Roaming routines... ********************/
483 #ifdef WAVELAN_ROAMING /* Conditional compile, see wavelan_cs.h */
485 static unsigned char WAVELAN_BEACON_ADDRESS[] = {0x09,0x00,0x0e,0x20,0x03,0x00};
487 static void wv_roam_init(struct net_device *dev)
489 net_local *lp= netdev_priv(dev);
491 /* Do not remove this unless you have a good reason */
492 printk(KERN_NOTICE "%s: Warning, you have enabled roaming on"
493 " device %s !\n", dev->name, dev->name);
494 printk(KERN_NOTICE "Roaming is currently an experimental unsupported feature"
495 " of the Wavelan driver.\n");
496 printk(KERN_NOTICE "It may work, but may also make the driver behave in"
497 " erratic ways or crash.\n");
499 lp->wavepoint_table.head=NULL; /* Initialise WavePoint table */
500 lp->wavepoint_table.num_wavepoints=0;
501 lp->wavepoint_table.locked=0;
502 lp->curr_point=NULL; /* No default WavePoint */
505 lp->cell_timer.data=(long)lp; /* Start cell expiry timer */
506 lp->cell_timer.function=wl_cell_expiry;
507 lp->cell_timer.expires=jiffies+CELL_TIMEOUT;
508 add_timer(&lp->cell_timer);
510 wv_nwid_filter(NWID_PROMISC,lp) ; /* Enter NWID promiscuous mode */
511 /* to build up a good WavePoint */
513 printk(KERN_DEBUG "WaveLAN: Roaming enabled on device %s\n",dev->name);
516 static void wv_roam_cleanup(struct net_device *dev)
518 wavepoint_history *ptr,*old_ptr;
519 net_local *lp= netdev_priv(dev);
521 printk(KERN_DEBUG "WaveLAN: Roaming Disabled on device %s\n",dev->name);
523 /* Fixme : maybe we should check that the timer exist before deleting it */
524 del_timer(&lp->cell_timer); /* Remove cell expiry timer */
525 ptr=lp->wavepoint_table.head; /* Clear device's WavePoint table */
530 wl_del_wavepoint(old_ptr,lp);
534 /* Enable/Disable NWID promiscuous mode on a given device */
535 static void wv_nwid_filter(unsigned char mode, net_local *lp)
540 #ifdef WAVELAN_ROAMING_DEBUG
541 printk(KERN_DEBUG "WaveLAN: NWID promisc %s, device %s\n",(mode==NWID_PROMISC) ? "on" : "off", lp->dev->name);
544 /* Disable interrupts & save flags */
545 spin_lock_irqsave(&lp->spinlock, flags);
547 m.w.mmw_loopt_sel = (mode==NWID_PROMISC) ? MMW_LOOPT_SEL_DIS_NWID : 0x00;
548 mmc_write(lp->dev->base_addr, (char *)&m.w.mmw_loopt_sel - (char *)&m, (unsigned char *)&m.w.mmw_loopt_sel, 1);
550 if(mode==NWID_PROMISC)
555 /* ReEnable interrupts & restore flags */
556 spin_unlock_irqrestore(&lp->spinlock, flags);
559 /* Find a record in the WavePoint table matching a given NWID */
560 static wavepoint_history *wl_roam_check(unsigned short nwid, net_local *lp)
562 wavepoint_history *ptr=lp->wavepoint_table.head;
572 /* Create a new wavepoint table entry */
573 static wavepoint_history *wl_new_wavepoint(unsigned short nwid, unsigned char seq, net_local* lp)
575 wavepoint_history *new_wavepoint;
577 #ifdef WAVELAN_ROAMING_DEBUG
578 printk(KERN_DEBUG "WaveLAN: New Wavepoint, NWID:%.4X\n",nwid);
581 if(lp->wavepoint_table.num_wavepoints==MAX_WAVEPOINTS)
584 new_wavepoint = kmalloc(sizeof(wavepoint_history),GFP_ATOMIC);
585 if(new_wavepoint==NULL)
588 new_wavepoint->nwid=nwid; /* New WavePoints NWID */
589 new_wavepoint->average_fast=0; /* Running Averages..*/
590 new_wavepoint->average_slow=0;
591 new_wavepoint->qualptr=0; /* Start of ringbuffer */
592 new_wavepoint->last_seq=seq-1; /* Last sequence no.seen */
593 memset(new_wavepoint->sigqual,0,WAVEPOINT_HISTORY);/* Empty ringbuffer */
595 new_wavepoint->next=lp->wavepoint_table.head;/* Add to wavepoint table */
596 new_wavepoint->prev=NULL;
598 if(lp->wavepoint_table.head!=NULL)
599 lp->wavepoint_table.head->prev=new_wavepoint;
601 lp->wavepoint_table.head=new_wavepoint;
603 lp->wavepoint_table.num_wavepoints++; /* no. of visible wavepoints */
605 return new_wavepoint;
608 /* Remove a wavepoint entry from WavePoint table */
609 static void wl_del_wavepoint(wavepoint_history *wavepoint, struct net_local *lp)
614 if(lp->curr_point==wavepoint)
617 if(wavepoint->prev!=NULL)
618 wavepoint->prev->next=wavepoint->next;
620 if(wavepoint->next!=NULL)
621 wavepoint->next->prev=wavepoint->prev;
623 if(lp->wavepoint_table.head==wavepoint)
624 lp->wavepoint_table.head=wavepoint->next;
626 lp->wavepoint_table.num_wavepoints--;
630 /* Timer callback function - checks WavePoint table for stale entries */
631 static void wl_cell_expiry(unsigned long data)
633 net_local *lp=(net_local *)data;
634 wavepoint_history *wavepoint=lp->wavepoint_table.head,*old_point;
636 #if WAVELAN_ROAMING_DEBUG > 1
637 printk(KERN_DEBUG "WaveLAN: Wavepoint timeout, dev %s\n",lp->dev->name);
640 if(lp->wavepoint_table.locked)
642 #if WAVELAN_ROAMING_DEBUG > 1
643 printk(KERN_DEBUG "WaveLAN: Wavepoint table locked...\n");
646 lp->cell_timer.expires=jiffies+1; /* If table in use, come back later */
647 add_timer(&lp->cell_timer);
651 while(wavepoint!=NULL)
653 if(time_after(jiffies, wavepoint->last_seen + CELL_TIMEOUT))
655 #ifdef WAVELAN_ROAMING_DEBUG
656 printk(KERN_DEBUG "WaveLAN: Bye bye %.4X\n",wavepoint->nwid);
660 wavepoint=wavepoint->next;
661 wl_del_wavepoint(old_point,lp);
664 wavepoint=wavepoint->next;
666 lp->cell_timer.expires=jiffies+CELL_TIMEOUT;
667 add_timer(&lp->cell_timer);
670 /* Update SNR history of a wavepoint */
671 static void wl_update_history(wavepoint_history *wavepoint, unsigned char sigqual, unsigned char seq)
673 int i=0,num_missed=0,ptr=0;
674 int average_fast=0,average_slow=0;
676 num_missed=(seq-wavepoint->last_seq)%WAVEPOINT_HISTORY;/* Have we missed
679 for(i=0;i<num_missed;i++)
681 wavepoint->sigqual[wavepoint->qualptr++]=0; /* If so, enter them as 0's */
682 wavepoint->qualptr %=WAVEPOINT_HISTORY; /* in the ringbuffer. */
684 wavepoint->last_seen=jiffies; /* Add beacon to history */
685 wavepoint->last_seq=seq;
686 wavepoint->sigqual[wavepoint->qualptr++]=sigqual;
687 wavepoint->qualptr %=WAVEPOINT_HISTORY;
688 ptr=(wavepoint->qualptr-WAVEPOINT_FAST_HISTORY+WAVEPOINT_HISTORY)%WAVEPOINT_HISTORY;
690 for(i=0;i<WAVEPOINT_FAST_HISTORY;i++) /* Update running averages */
692 average_fast+=wavepoint->sigqual[ptr++];
693 ptr %=WAVEPOINT_HISTORY;
696 average_slow=average_fast;
697 for(i=WAVEPOINT_FAST_HISTORY;i<WAVEPOINT_HISTORY;i++)
699 average_slow+=wavepoint->sigqual[ptr++];
700 ptr %=WAVEPOINT_HISTORY;
703 wavepoint->average_fast=average_fast/WAVEPOINT_FAST_HISTORY;
704 wavepoint->average_slow=average_slow/WAVEPOINT_HISTORY;
707 /* Perform a handover to a new WavePoint */
708 static void wv_roam_handover(wavepoint_history *wavepoint, net_local *lp)
710 unsigned int base = lp->dev->base_addr;
714 if(wavepoint==lp->curr_point) /* Sanity check... */
716 wv_nwid_filter(!NWID_PROMISC,lp);
720 #ifdef WAVELAN_ROAMING_DEBUG
721 printk(KERN_DEBUG "WaveLAN: Doing handover to %.4X, dev %s\n",wavepoint->nwid,lp->dev->name);
724 /* Disable interrupts & save flags */
725 spin_lock_irqsave(&lp->spinlock, flags);
727 m.w.mmw_netw_id_l = wavepoint->nwid & 0xFF;
728 m.w.mmw_netw_id_h = (wavepoint->nwid & 0xFF00) >> 8;
730 mmc_write(base, (char *)&m.w.mmw_netw_id_l - (char *)&m, (unsigned char *)&m.w.mmw_netw_id_l, 2);
732 /* ReEnable interrupts & restore flags */
733 spin_unlock_irqrestore(&lp->spinlock, flags);
735 wv_nwid_filter(!NWID_PROMISC,lp);
736 lp->curr_point=wavepoint;
739 /* Called when a WavePoint beacon is received */
740 static void wl_roam_gather(struct net_device * dev,
741 u_char * hdr, /* Beacon header */
742 u_char * stats) /* SNR, Signal quality
745 wavepoint_beacon *beacon= (wavepoint_beacon *)hdr; /* Rcvd. Beacon */
746 unsigned short nwid=ntohs(beacon->nwid);
747 unsigned short sigqual=stats[2] & MMR_SGNL_QUAL; /* SNR of beacon */
748 wavepoint_history *wavepoint=NULL; /* WavePoint table entry */
749 net_local *lp = netdev_priv(dev); /* Device info */
751 #ifdef I_NEED_THIS_FEATURE
752 /* Some people don't need this, some other may need it */
753 nwid=nwid^ntohs(beacon->domain_id);
756 #if WAVELAN_ROAMING_DEBUG > 1
757 printk(KERN_DEBUG "WaveLAN: beacon, dev %s:\n",dev->name);
758 printk(KERN_DEBUG "Domain: %.4X NWID: %.4X SigQual=%d\n",ntohs(beacon->domain_id),nwid,sigqual);
761 lp->wavepoint_table.locked=1; /* <Mutex> */
763 wavepoint=wl_roam_check(nwid,lp); /* Find WavePoint table entry */
764 if(wavepoint==NULL) /* If no entry, Create a new one... */
766 wavepoint=wl_new_wavepoint(nwid,beacon->seq,lp);
770 if(lp->curr_point==NULL) /* If this is the only WavePoint, */
771 wv_roam_handover(wavepoint, lp); /* Jump on it! */
773 wl_update_history(wavepoint, sigqual, beacon->seq); /* Update SNR history
776 if(lp->curr_point->average_slow < SEARCH_THRESH_LOW) /* If our current */
777 if(!lp->cell_search) /* WavePoint is getting faint, */
778 wv_nwid_filter(NWID_PROMISC,lp); /* start looking for a new one */
780 if(wavepoint->average_slow >
781 lp->curr_point->average_slow + WAVELAN_ROAMING_DELTA)
782 wv_roam_handover(wavepoint, lp); /* Handover to a better WavePoint */
784 if(lp->curr_point->average_slow > SEARCH_THRESH_HIGH) /* If our SNR is */
785 if(lp->cell_search) /* getting better, drop out of cell search mode */
786 wv_nwid_filter(!NWID_PROMISC,lp);
789 lp->wavepoint_table.locked=0; /* </MUTEX> :-) */
792 /* Test this MAC frame a WavePoint beacon */
793 static inline int WAVELAN_BEACON(unsigned char *data)
795 wavepoint_beacon *beacon= (wavepoint_beacon *)data;
796 static const wavepoint_beacon beacon_template={0xaa,0xaa,0x03,0x08,0x00,0x0e,0x20,0x03,0x00};
798 if(memcmp(beacon,&beacon_template,9)==0)
803 #endif /* WAVELAN_ROAMING */
805 /************************ I82593 SUBROUTINES *************************/
807 * Useful subroutines to manage the Ethernet controller
810 /*------------------------------------------------------------------*/
812 * Routine to synchronously send a command to the i82593 chip.
813 * Should be called with interrupts disabled.
814 * (called by wv_packet_write(), wv_ru_stop(), wv_ru_start(),
815 * wv_82593_config() & wv_diag())
818 wv_82593_cmd(struct net_device * dev,
823 unsigned int base = dev->base_addr;
828 /* Spin until the chip finishes executing its current command (if any) */
832 /* Time calibration of the loop */
835 /* Read the interrupt register */
836 outb(OP0_NOP | CR0_STATUS_3, LCCR(base));
837 status = inb(LCSR(base));
839 while(((status & SR3_EXEC_STATE_MASK) != SR3_EXEC_IDLE) && (spin-- > 0));
841 /* If the interrupt hasn't be posted */
844 #ifdef DEBUG_INTERRUPT_ERROR
845 printk(KERN_INFO "wv_82593_cmd: %s timeout (previous command), status 0x%02x\n",
851 /* Issue the command to the controller */
852 outb(cmd, LCCR(base));
854 /* If we don't have to check the result of the command
855 * Note : this mean that the irq handler will deal with that */
856 if(result == SR0_NO_RESULT)
859 /* We are waiting for command completion */
860 wait_completed = TRUE;
862 /* Busy wait while the LAN controller executes the command. */
866 /* Time calibration of the loop */
869 /* Read the interrupt register */
870 outb(CR0_STATUS_0 | OP0_NOP, LCCR(base));
871 status = inb(LCSR(base));
873 /* Check if there was an interrupt posted */
874 if((status & SR0_INTERRUPT))
876 /* Acknowledge the interrupt */
877 outb(CR0_INT_ACK | OP0_NOP, LCCR(base));
879 /* Check if interrupt is a command completion */
880 if(((status & SR0_BOTH_RX_TX) != SR0_BOTH_RX_TX) &&
881 ((status & SR0_BOTH_RX_TX) != 0x0) &&
882 !(status & SR0_RECEPTION))
884 /* Signal command completion */
885 wait_completed = FALSE;
889 /* Note : Rx interrupts will be handled later, because we can
890 * handle multiple Rx packets at once */
891 #ifdef DEBUG_INTERRUPT_INFO
892 printk(KERN_INFO "wv_82593_cmd: not our interrupt\n");
897 while(wait_completed && (spin-- > 0));
899 /* If the interrupt hasn't be posted */
902 #ifdef DEBUG_INTERRUPT_ERROR
903 printk(KERN_INFO "wv_82593_cmd: %s timeout, status 0x%02x\n",
909 /* Check the return code returned by the card (see above) against
910 * the expected return code provided by the caller */
911 if((status & SR0_EVENT_MASK) != result)
913 #ifdef DEBUG_INTERRUPT_ERROR
914 printk(KERN_INFO "wv_82593_cmd: %s failed, status = 0x%x\n",
923 /*------------------------------------------------------------------*/
925 * This routine does a 593 op-code number 7, and obtains the diagnose
926 * status for the WaveLAN.
929 wv_diag(struct net_device * dev)
931 return(wv_82593_cmd(dev, "wv_diag(): diagnose",
932 OP0_DIAGNOSE, SR0_DIAGNOSE_PASSED));
935 /*------------------------------------------------------------------*/
937 * Routine to read len bytes from the i82593's ring buffer, starting at
938 * chip address addr. The results read from the chip are stored in buf.
939 * The return value is the address to use for next the call.
942 read_ringbuf(struct net_device * dev,
947 unsigned int base = dev->base_addr;
950 char * buf_ptr = buf;
952 /* Get all the buffer */
955 /* Position the Program I/O Register at the ring buffer pointer */
956 outb(ring_ptr & 0xff, PIORL(base));
957 outb(((ring_ptr >> 8) & PIORH_MASK), PIORH(base));
959 /* First, determine how much we can read without wrapping around the
961 if((addr + len) < (RX_BASE + RX_SIZE))
964 chunk_len = RX_BASE + RX_SIZE - addr;
965 insb(PIOP(base), buf_ptr, chunk_len);
966 buf_ptr += chunk_len;
968 ring_ptr = (ring_ptr - RX_BASE + chunk_len) % RX_SIZE + RX_BASE;
973 /*------------------------------------------------------------------*/
975 * Reconfigure the i82593, or at least ask for it...
976 * Because wv_82593_config use the transmission buffer, we must do it
977 * when we are sure that there is no transmission, so we do it now
978 * or in wavelan_packet_xmit() (I can't find any better place,
979 * wavelan_interrupt is not an option...), so you may experience
980 * some delay sometime...
983 wv_82593_reconfig(struct net_device * dev)
985 net_local * lp = netdev_priv(dev);
986 struct pcmcia_device * link = lp->link;
989 /* Arm the flag, will be cleard in wv_82593_config() */
990 lp->reconfig_82593 = TRUE;
992 /* Check if we can do it now ! */
993 if((link->open) && (netif_running(dev)) && !(netif_queue_stopped(dev)))
995 spin_lock_irqsave(&lp->spinlock, flags); /* Disable interrupts */
996 wv_82593_config(dev);
997 spin_unlock_irqrestore(&lp->spinlock, flags); /* Re-enable interrupts */
1001 #ifdef DEBUG_IOCTL_INFO
1003 "%s: wv_82593_reconfig(): delayed (state = %lX, link = %d)\n",
1004 dev->name, dev->state, link->open);
1009 /********************* DEBUG & INFO SUBROUTINES *********************/
1011 * This routines are used in the code to show debug informations.
1012 * Most of the time, it dump the content of hardware structures...
1015 #ifdef DEBUG_PSA_SHOW
1016 /*------------------------------------------------------------------*/
1018 * Print the formatted contents of the Parameter Storage Area.
1021 wv_psa_show(psa_t * p)
1023 DECLARE_MAC_BUF(mac);
1024 printk(KERN_DEBUG "##### wavelan psa contents: #####\n");
1025 printk(KERN_DEBUG "psa_io_base_addr_1: 0x%02X %02X %02X %02X\n",
1026 p->psa_io_base_addr_1,
1027 p->psa_io_base_addr_2,
1028 p->psa_io_base_addr_3,
1029 p->psa_io_base_addr_4);
1030 printk(KERN_DEBUG "psa_rem_boot_addr_1: 0x%02X %02X %02X\n",
1031 p->psa_rem_boot_addr_1,
1032 p->psa_rem_boot_addr_2,
1033 p->psa_rem_boot_addr_3);
1034 printk(KERN_DEBUG "psa_holi_params: 0x%02x, ", p->psa_holi_params);
1035 printk("psa_int_req_no: %d\n", p->psa_int_req_no);
1036 #ifdef DEBUG_SHOW_UNUSED
1037 printk(KERN_DEBUG "psa_unused0[]: %s\n",
1038 print_mac(mac, p->psa_unused0));
1039 #endif /* DEBUG_SHOW_UNUSED */
1040 printk(KERN_DEBUG "psa_univ_mac_addr[]: %s\n",
1041 print_mac(mac, p->psa_univ_mac_addr));
1042 printk(KERN_DEBUG "psa_local_mac_addr[]: %s\n",
1043 print_mac(mac, p->psa_local_mac_addr));
1044 printk(KERN_DEBUG "psa_univ_local_sel: %d, ", p->psa_univ_local_sel);
1045 printk("psa_comp_number: %d, ", p->psa_comp_number);
1046 printk("psa_thr_pre_set: 0x%02x\n", p->psa_thr_pre_set);
1047 printk(KERN_DEBUG "psa_feature_select/decay_prm: 0x%02x, ",
1048 p->psa_feature_select);
1049 printk("psa_subband/decay_update_prm: %d\n", p->psa_subband);
1050 printk(KERN_DEBUG "psa_quality_thr: 0x%02x, ", p->psa_quality_thr);
1051 printk("psa_mod_delay: 0x%02x\n", p->psa_mod_delay);
1052 printk(KERN_DEBUG "psa_nwid: 0x%02x%02x, ", p->psa_nwid[0], p->psa_nwid[1]);
1053 printk("psa_nwid_select: %d\n", p->psa_nwid_select);
1054 printk(KERN_DEBUG "psa_encryption_select: %d, ", p->psa_encryption_select);
1055 printk("psa_encryption_key[]: %02x:%02x:%02x:%02x:%02x:%02x:%02x:%02x\n",
1056 p->psa_encryption_key[0],
1057 p->psa_encryption_key[1],
1058 p->psa_encryption_key[2],
1059 p->psa_encryption_key[3],
1060 p->psa_encryption_key[4],
1061 p->psa_encryption_key[5],
1062 p->psa_encryption_key[6],
1063 p->psa_encryption_key[7]);
1064 printk(KERN_DEBUG "psa_databus_width: %d\n", p->psa_databus_width);
1065 printk(KERN_DEBUG "psa_call_code/auto_squelch: 0x%02x, ",
1066 p->psa_call_code[0]);
1067 printk("psa_call_code[]: %02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X\n",
1068 p->psa_call_code[0],
1069 p->psa_call_code[1],
1070 p->psa_call_code[2],
1071 p->psa_call_code[3],
1072 p->psa_call_code[4],
1073 p->psa_call_code[5],
1074 p->psa_call_code[6],
1075 p->psa_call_code[7]);
1076 #ifdef DEBUG_SHOW_UNUSED
1077 printk(KERN_DEBUG "psa_reserved[]: %02X:%02X:%02X:%02X\n",
1081 p->psa_reserved[3]);
1082 #endif /* DEBUG_SHOW_UNUSED */
1083 printk(KERN_DEBUG "psa_conf_status: %d, ", p->psa_conf_status);
1084 printk("psa_crc: 0x%02x%02x, ", p->psa_crc[0], p->psa_crc[1]);
1085 printk("psa_crc_status: 0x%02x\n", p->psa_crc_status);
1087 #endif /* DEBUG_PSA_SHOW */
1089 #ifdef DEBUG_MMC_SHOW
1090 /*------------------------------------------------------------------*/
1092 * Print the formatted status of the Modem Management Controller.
1093 * This function need to be completed...
1096 wv_mmc_show(struct net_device * dev)
1098 unsigned int base = dev->base_addr;
1099 net_local * lp = netdev_priv(dev);
1103 if(hasr_read(base) & HASR_NO_CLK)
1105 printk(KERN_WARNING "%s: wv_mmc_show: modem not connected\n",
1110 spin_lock_irqsave(&lp->spinlock, flags);
1113 mmc_out(base, mmwoff(0, mmw_freeze), 1);
1114 mmc_read(base, 0, (u_char *)&m, sizeof(m));
1115 mmc_out(base, mmwoff(0, mmw_freeze), 0);
1117 /* Don't forget to update statistics */
1118 lp->wstats.discard.nwid += (m.mmr_wrong_nwid_h << 8) | m.mmr_wrong_nwid_l;
1120 spin_unlock_irqrestore(&lp->spinlock, flags);
1122 printk(KERN_DEBUG "##### wavelan modem status registers: #####\n");
1123 #ifdef DEBUG_SHOW_UNUSED
1124 printk(KERN_DEBUG "mmc_unused0[]: %02X:%02X:%02X:%02X:%02X:%02X:%02X:%02X\n",
1133 #endif /* DEBUG_SHOW_UNUSED */
1134 printk(KERN_DEBUG "Encryption algorithm: %02X - Status: %02X\n",
1135 m.mmr_des_avail, m.mmr_des_status);
1136 #ifdef DEBUG_SHOW_UNUSED
1137 printk(KERN_DEBUG "mmc_unused1[]: %02X:%02X:%02X:%02X:%02X\n",
1143 #endif /* DEBUG_SHOW_UNUSED */
1144 printk(KERN_DEBUG "dce_status: 0x%x [%s%s%s%s]\n",
1146 (m.mmr_dce_status & MMR_DCE_STATUS_RX_BUSY) ? "energy detected,":"",
1147 (m.mmr_dce_status & MMR_DCE_STATUS_LOOPT_IND) ?
1148 "loop test indicated," : "",
1149 (m.mmr_dce_status & MMR_DCE_STATUS_TX_BUSY) ? "transmitter on," : "",
1150 (m.mmr_dce_status & MMR_DCE_STATUS_JBR_EXPIRED) ?
1151 "jabber timer expired," : "");
1152 printk(KERN_DEBUG "Dsp ID: %02X\n",
1154 #ifdef DEBUG_SHOW_UNUSED
1155 printk(KERN_DEBUG "mmc_unused2[]: %02X:%02X\n",
1158 #endif /* DEBUG_SHOW_UNUSED */
1159 printk(KERN_DEBUG "# correct_nwid: %d, # wrong_nwid: %d\n",
1160 (m.mmr_correct_nwid_h << 8) | m.mmr_correct_nwid_l,
1161 (m.mmr_wrong_nwid_h << 8) | m.mmr_wrong_nwid_l);
1162 printk(KERN_DEBUG "thr_pre_set: 0x%x [current signal %s]\n",
1163 m.mmr_thr_pre_set & MMR_THR_PRE_SET,
1164 (m.mmr_thr_pre_set & MMR_THR_PRE_SET_CUR) ? "above" : "below");
1165 printk(KERN_DEBUG "signal_lvl: %d [%s], ",
1166 m.mmr_signal_lvl & MMR_SIGNAL_LVL,
1167 (m.mmr_signal_lvl & MMR_SIGNAL_LVL_VALID) ? "new msg" : "no new msg");
1168 printk("silence_lvl: %d [%s], ", m.mmr_silence_lvl & MMR_SILENCE_LVL,
1169 (m.mmr_silence_lvl & MMR_SILENCE_LVL_VALID) ? "update done" : "no new update");
1170 printk("sgnl_qual: 0x%x [%s]\n", m.mmr_sgnl_qual & MMR_SGNL_QUAL,
1171 (m.mmr_sgnl_qual & MMR_SGNL_QUAL_ANT) ? "Antenna 1" : "Antenna 0");
1172 #ifdef DEBUG_SHOW_UNUSED
1173 printk(KERN_DEBUG "netw_id_l: %x\n", m.mmr_netw_id_l);
1174 #endif /* DEBUG_SHOW_UNUSED */
1176 #endif /* DEBUG_MMC_SHOW */
1178 #ifdef DEBUG_I82593_SHOW
1179 /*------------------------------------------------------------------*/
1181 * Print the formatted status of the i82593's receive unit.
1184 wv_ru_show(struct net_device * dev)
1186 net_local *lp = netdev_priv(dev);
1188 printk(KERN_DEBUG "##### wavelan i82593 receiver status: #####\n");
1189 printk(KERN_DEBUG "ru: rfp %d stop %d", lp->rfp, lp->stop);
1191 * Not implemented yet...
1195 #endif /* DEBUG_I82593_SHOW */
1197 #ifdef DEBUG_DEVICE_SHOW
1198 /*------------------------------------------------------------------*/
1200 * Print the formatted status of the WaveLAN PCMCIA device driver.
1203 wv_dev_show(struct net_device * dev)
1205 printk(KERN_DEBUG "dev:");
1206 printk(" state=%lX,", dev->state);
1207 printk(" trans_start=%ld,", dev->trans_start);
1208 printk(" flags=0x%x,", dev->flags);
1212 /*------------------------------------------------------------------*/
1214 * Print the formatted status of the WaveLAN PCMCIA device driver's
1215 * private information.
1218 wv_local_show(struct net_device * dev)
1220 net_local *lp = netdev_priv(dev);
1222 printk(KERN_DEBUG "local:");
1224 * Not implemented yet...
1227 } /* wv_local_show */
1228 #endif /* DEBUG_DEVICE_SHOW */
1230 #if defined(DEBUG_RX_INFO) || defined(DEBUG_TX_INFO)
1231 /*------------------------------------------------------------------*/
1233 * Dump packet header (and content if necessary) on the screen
1236 wv_packet_info(u_char * p, /* Packet to dump */
1237 int length, /* Length of the packet */
1238 char * msg1, /* Name of the device */
1239 char * msg2) /* Name of the function */
1243 DECLARE_MAC_BUF(mac);
1245 printk(KERN_DEBUG "%s: %s(): dest %s, length %d\n",
1246 msg1, msg2, print_mac(mac, p), length);
1247 printk(KERN_DEBUG "%s: %s(): src %s, type 0x%02X%02X\n",
1248 msg1, msg2, print_mac(mac, &p[6]), p[12], p[13]);
1250 #ifdef DEBUG_PACKET_DUMP
1252 printk(KERN_DEBUG "data=\"");
1254 if((maxi = length) > DEBUG_PACKET_DUMP)
1255 maxi = DEBUG_PACKET_DUMP;
1256 for(i = 14; i < maxi; i++)
1257 if(p[i] >= ' ' && p[i] <= '~')
1258 printk(" %c", p[i]);
1260 printk("%02X", p[i]);
1264 printk(KERN_DEBUG "\n");
1265 #endif /* DEBUG_PACKET_DUMP */
1267 #endif /* defined(DEBUG_RX_INFO) || defined(DEBUG_TX_INFO) */
1269 /*------------------------------------------------------------------*/
1271 * This is the information which is displayed by the driver at startup
1272 * There is a lot of flag to configure it at your will...
1275 wv_init_info(struct net_device * dev)
1277 unsigned int base = dev->base_addr;
1279 DECLARE_MAC_BUF(mac);
1281 /* Read the parameter storage area */
1282 psa_read(dev, 0, (unsigned char *) &psa, sizeof(psa));
1284 #ifdef DEBUG_PSA_SHOW
1287 #ifdef DEBUG_MMC_SHOW
1290 #ifdef DEBUG_I82593_SHOW
1294 #ifdef DEBUG_BASIC_SHOW
1295 /* Now, let's go for the basic stuff */
1296 printk(KERN_NOTICE "%s: WaveLAN: port %#x, irq %d, "
1298 dev->name, base, dev->irq,
1299 print_mac(mac, dev->dev_addr));
1301 /* Print current network id */
1302 if(psa.psa_nwid_select)
1303 printk(", nwid 0x%02X-%02X", psa.psa_nwid[0], psa.psa_nwid[1]);
1305 printk(", nwid off");
1308 if(!(mmc_in(base, mmroff(0, mmr_fee_status)) &
1309 (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY)))
1311 unsigned short freq;
1313 /* Ask the EEprom to read the frequency from the first area */
1314 fee_read(base, 0x00 /* 1st area - frequency... */,
1317 /* Print frequency */
1318 printk(", 2.00, %ld", (freq >> 6) + 2400L);
1326 printk(", PCMCIA, ");
1327 switch (psa.psa_subband)
1329 case PSA_SUBBAND_915:
1332 case PSA_SUBBAND_2425:
1335 case PSA_SUBBAND_2460:
1338 case PSA_SUBBAND_2484:
1341 case PSA_SUBBAND_2430_5:
1350 #endif /* DEBUG_BASIC_SHOW */
1352 #ifdef DEBUG_VERSION_SHOW
1353 /* Print version information */
1354 printk(KERN_NOTICE "%s", version);
1356 } /* wv_init_info */
1358 /********************* IOCTL, STATS & RECONFIG *********************/
1360 * We found here routines that are called by Linux on differents
1361 * occasions after the configuration and not for transmitting data
1362 * These may be called when the user use ifconfig, /proc/net/dev
1363 * or wireless extensions
1366 /*------------------------------------------------------------------*/
1368 * Get the current ethernet statistics. This may be called with the
1369 * card open or closed.
1370 * Used when the user read /proc/net/dev
1373 wavelan_get_stats(struct net_device * dev)
1375 #ifdef DEBUG_IOCTL_TRACE
1376 printk(KERN_DEBUG "%s: <>wavelan_get_stats()\n", dev->name);
1379 return(&((net_local *)netdev_priv(dev))->stats);
1382 /*------------------------------------------------------------------*/
1384 * Set or clear the multicast filter for this adaptor.
1385 * num_addrs == -1 Promiscuous mode, receive all packets
1386 * num_addrs == 0 Normal mode, clear multicast list
1387 * num_addrs > 0 Multicast mode, receive normal and MC packets,
1388 * and do best-effort filtering.
1392 wavelan_set_multicast_list(struct net_device * dev)
1394 net_local * lp = netdev_priv(dev);
1396 #ifdef DEBUG_IOCTL_TRACE
1397 printk(KERN_DEBUG "%s: ->wavelan_set_multicast_list()\n", dev->name);
1400 #ifdef DEBUG_IOCTL_INFO
1401 printk(KERN_DEBUG "%s: wavelan_set_multicast_list(): setting Rx mode %02X to %d addresses.\n",
1402 dev->name, dev->flags, dev->mc_count);
1405 if(dev->flags & IFF_PROMISC)
1408 * Enable promiscuous mode: receive all packets.
1410 if(!lp->promiscuous)
1412 lp->promiscuous = 1;
1413 lp->allmulticast = 0;
1416 wv_82593_reconfig(dev);
1418 /* Tell the kernel that we are doing a really bad job... */
1419 dev->flags |= IFF_PROMISC;
1423 /* If all multicast addresses
1424 * or too much multicast addresses for the hardware filter */
1425 if((dev->flags & IFF_ALLMULTI) ||
1426 (dev->mc_count > I82593_MAX_MULTICAST_ADDRESSES))
1429 * Disable promiscuous mode, but active the all multicast mode
1431 if(!lp->allmulticast)
1433 lp->promiscuous = 0;
1434 lp->allmulticast = 1;
1437 wv_82593_reconfig(dev);
1439 /* Tell the kernel that we are doing a really bad job... */
1440 dev->flags |= IFF_ALLMULTI;
1444 /* If there is some multicast addresses to send */
1445 if(dev->mc_list != (struct dev_mc_list *) NULL)
1448 * Disable promiscuous mode, but receive all packets
1451 #ifdef MULTICAST_AVOID
1452 if(lp->promiscuous || lp->allmulticast ||
1453 (dev->mc_count != lp->mc_count))
1456 lp->promiscuous = 0;
1457 lp->allmulticast = 0;
1458 lp->mc_count = dev->mc_count;
1460 wv_82593_reconfig(dev);
1466 * Switch to normal mode: disable promiscuous mode and
1467 * clear the multicast list.
1469 if(lp->promiscuous || lp->mc_count == 0)
1471 lp->promiscuous = 0;
1472 lp->allmulticast = 0;
1475 wv_82593_reconfig(dev);
1478 #ifdef DEBUG_IOCTL_TRACE
1479 printk(KERN_DEBUG "%s: <-wavelan_set_multicast_list()\n", dev->name);
1483 /*------------------------------------------------------------------*/
1485 * This function doesn't exist...
1486 * (Note : it was a nice way to test the reconfigure stuff...)
1488 #ifdef SET_MAC_ADDRESS
1490 wavelan_set_mac_address(struct net_device * dev,
1493 struct sockaddr * mac = addr;
1495 /* Copy the address */
1496 memcpy(dev->dev_addr, mac->sa_data, WAVELAN_ADDR_SIZE);
1498 /* Reconfig the beast */
1499 wv_82593_reconfig(dev);
1503 #endif /* SET_MAC_ADDRESS */
1506 /*------------------------------------------------------------------*/
1508 * Frequency setting (for hardware able of it)
1509 * It's a bit complicated and you don't really want to look into it...
1512 wv_set_frequency(u_long base, /* i/o port of the card */
1513 iw_freq * frequency)
1515 const int BAND_NUM = 10; /* Number of bands */
1516 long freq = 0L; /* offset to 2.4 GHz in .5 MHz */
1517 #ifdef DEBUG_IOCTL_INFO
1521 /* Setting by frequency */
1522 /* Theoritically, you may set any frequency between
1523 * the two limits with a 0.5 MHz precision. In practice,
1524 * I don't want you to have trouble with local
1526 if((frequency->e == 1) &&
1527 (frequency->m >= (int) 2.412e8) && (frequency->m <= (int) 2.487e8))
1529 freq = ((frequency->m / 10000) - 24000L) / 5;
1532 /* Setting by channel (same as wfreqsel) */
1533 /* Warning : each channel is 22MHz wide, so some of the channels
1534 * will interfere... */
1535 if((frequency->e == 0) &&
1536 (frequency->m >= 0) && (frequency->m < BAND_NUM))
1538 /* Get frequency offset. */
1539 freq = channel_bands[frequency->m] >> 1;
1542 /* Verify if the frequency is allowed */
1545 u_short table[10]; /* Authorized frequency table */
1547 /* Read the frequency table */
1548 fee_read(base, 0x71 /* frequency table */,
1551 #ifdef DEBUG_IOCTL_INFO
1552 printk(KERN_DEBUG "Frequency table :");
1553 for(i = 0; i < 10; i++)
1561 /* Look in the table if the frequency is allowed */
1562 if(!(table[9 - ((freq - 24) / 16)] &
1563 (1 << ((freq - 24) % 16))))
1564 return -EINVAL; /* not allowed */
1569 /* If we get a usable frequency */
1572 unsigned short area[16];
1573 unsigned short dac[2];
1574 unsigned short area_verify[16];
1575 unsigned short dac_verify[2];
1576 /* Corresponding gain (in the power adjust value table)
1577 * see AT&T Wavelan Data Manual, REF 407-024689/E, page 3-8
1578 * & WCIN062D.DOC, page 6.2.9 */
1579 unsigned short power_limit[] = { 40, 80, 120, 160, 0 };
1580 int power_band = 0; /* Selected band */
1581 unsigned short power_adjust; /* Correct value */
1583 /* Search for the gain */
1585 while((freq > power_limit[power_band]) &&
1586 (power_limit[++power_band] != 0))
1589 /* Read the first area */
1590 fee_read(base, 0x00,
1594 fee_read(base, 0x60,
1597 /* Read the new power adjust value */
1598 fee_read(base, 0x6B - (power_band >> 1),
1600 if(power_band & 0x1)
1603 power_adjust &= 0xFF;
1605 #ifdef DEBUG_IOCTL_INFO
1606 printk(KERN_DEBUG "Wavelan EEprom Area 1 :");
1607 for(i = 0; i < 16; i++)
1614 printk(KERN_DEBUG "Wavelan EEprom DAC : %04X %04X\n",
1618 /* Frequency offset (for info only...) */
1619 area[0] = ((freq << 5) & 0xFFE0) | (area[0] & 0x1F);
1621 /* Receiver Principle main divider coefficient */
1622 area[3] = (freq >> 1) + 2400L - 352L;
1623 area[2] = ((freq & 0x1) << 4) | (area[2] & 0xFFEF);
1625 /* Transmitter Main divider coefficient */
1626 area[13] = (freq >> 1) + 2400L;
1627 area[12] = ((freq & 0x1) << 4) | (area[2] & 0xFFEF);
1629 /* Others part of the area are flags, bit streams or unused... */
1631 /* Set the value in the DAC */
1632 dac[1] = ((power_adjust >> 1) & 0x7F) | (dac[1] & 0xFF80);
1633 dac[0] = ((power_adjust & 0x1) << 4) | (dac[0] & 0xFFEF);
1635 /* Write the first area */
1636 fee_write(base, 0x00,
1640 fee_write(base, 0x60,
1643 /* We now should verify here that the EEprom writing was ok */
1645 /* ReRead the first area */
1646 fee_read(base, 0x00,
1649 /* ReRead the DAC */
1650 fee_read(base, 0x60,
1654 if(memcmp(area, area_verify, 16 * 2) ||
1655 memcmp(dac, dac_verify, 2 * 2))
1657 #ifdef DEBUG_IOCTL_ERROR
1658 printk(KERN_INFO "Wavelan: wv_set_frequency : unable to write new frequency to EEprom (?)\n");
1663 /* We must download the frequency parameters to the
1664 * synthetisers (from the EEprom - area 1)
1665 * Note : as the EEprom is auto decremented, we set the end
1667 mmc_out(base, mmwoff(0, mmw_fee_addr), 0x0F);
1668 mmc_out(base, mmwoff(0, mmw_fee_ctrl),
1669 MMW_FEE_CTRL_READ | MMW_FEE_CTRL_DWLD);
1671 /* Wait until the download is finished */
1672 fee_wait(base, 100, 100);
1674 /* We must now download the power adjust value (gain) to
1675 * the synthetisers (from the EEprom - area 7 - DAC) */
1676 mmc_out(base, mmwoff(0, mmw_fee_addr), 0x61);
1677 mmc_out(base, mmwoff(0, mmw_fee_ctrl),
1678 MMW_FEE_CTRL_READ | MMW_FEE_CTRL_DWLD);
1680 /* Wait until the download is finished */
1681 fee_wait(base, 100, 100);
1683 #ifdef DEBUG_IOCTL_INFO
1684 /* Verification of what we have done... */
1686 printk(KERN_DEBUG "Wavelan EEprom Area 1 :");
1687 for(i = 0; i < 16; i++)
1694 printk(KERN_DEBUG "Wavelan EEprom DAC : %04X %04X\n",
1695 dac_verify[0], dac_verify[1]);
1701 return -EINVAL; /* Bah, never get there... */
1704 /*------------------------------------------------------------------*/
1706 * Give the list of available frequencies
1709 wv_frequency_list(u_long base, /* i/o port of the card */
1710 iw_freq * list, /* List of frequency to fill */
1711 int max) /* Maximum number of frequencies */
1713 u_short table[10]; /* Authorized frequency table */
1714 long freq = 0L; /* offset to 2.4 GHz in .5 MHz + 12 MHz */
1715 int i; /* index in the table */
1716 const int BAND_NUM = 10; /* Number of bands */
1717 int c = 0; /* Channel number */
1719 /* Read the frequency table */
1720 fee_read(base, 0x71 /* frequency table */,
1723 /* Look all frequencies */
1725 for(freq = 0; freq < 150; freq++)
1726 /* Look in the table if the frequency is allowed */
1727 if(table[9 - (freq / 16)] & (1 << (freq % 16)))
1729 /* Compute approximate channel number */
1730 while((((channel_bands[c] >> 1) - 24) < freq) &&
1733 list[i].i = c; /* Set the list index */
1735 /* put in the list */
1736 list[i].m = (((freq + 24) * 5) + 24000L) * 10000;
1747 #ifdef IW_WIRELESS_SPY
1748 /*------------------------------------------------------------------*/
1750 * Gather wireless spy statistics : for each packet, compare the source
1751 * address with out list, and if match, get the stats...
1752 * Sorry, but this function really need wireless extensions...
1755 wl_spy_gather(struct net_device * dev,
1756 u_char * mac, /* MAC address */
1757 u_char * stats) /* Statistics to gather */
1759 struct iw_quality wstats;
1761 wstats.qual = stats[2] & MMR_SGNL_QUAL;
1762 wstats.level = stats[0] & MMR_SIGNAL_LVL;
1763 wstats.noise = stats[1] & MMR_SILENCE_LVL;
1764 wstats.updated = 0x7;
1766 /* Update spy records */
1767 wireless_spy_update(dev, mac, &wstats);
1769 #endif /* IW_WIRELESS_SPY */
1772 /*------------------------------------------------------------------*/
1774 * This function calculate an histogram on the signal level.
1775 * As the noise is quite constant, it's like doing it on the SNR.
1776 * We have defined a set of interval (lp->his_range), and each time
1777 * the level goes in that interval, we increment the count (lp->his_sum).
1778 * With this histogram you may detect if one wavelan is really weak,
1779 * or you may also calculate the mean and standard deviation of the level...
1782 wl_his_gather(struct net_device * dev,
1783 u_char * stats) /* Statistics to gather */
1785 net_local * lp = netdev_priv(dev);
1786 u_char level = stats[0] & MMR_SIGNAL_LVL;
1789 /* Find the correct interval */
1791 while((i < (lp->his_number - 1)) && (level >= lp->his_range[i++]))
1794 /* Increment interval counter */
1797 #endif /* HISTOGRAM */
1799 static void wl_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
1801 strncpy(info->driver, "wavelan_cs", sizeof(info->driver)-1);
1804 static const struct ethtool_ops ops = {
1805 .get_drvinfo = wl_get_drvinfo
1808 /*------------------------------------------------------------------*/
1810 * Wireless Handler : get protocol name
1812 static int wavelan_get_name(struct net_device *dev,
1813 struct iw_request_info *info,
1814 union iwreq_data *wrqu,
1817 strcpy(wrqu->name, "WaveLAN");
1821 /*------------------------------------------------------------------*/
1823 * Wireless Handler : set NWID
1825 static int wavelan_set_nwid(struct net_device *dev,
1826 struct iw_request_info *info,
1827 union iwreq_data *wrqu,
1830 unsigned int base = dev->base_addr;
1831 net_local *lp = netdev_priv(dev);
1834 unsigned long flags;
1837 /* Disable interrupts and save flags. */
1838 spin_lock_irqsave(&lp->spinlock, flags);
1840 /* Set NWID in WaveLAN. */
1841 if (!wrqu->nwid.disabled) {
1842 /* Set NWID in psa */
1843 psa.psa_nwid[0] = (wrqu->nwid.value & 0xFF00) >> 8;
1844 psa.psa_nwid[1] = wrqu->nwid.value & 0xFF;
1845 psa.psa_nwid_select = 0x01;
1847 (char *) psa.psa_nwid - (char *) &psa,
1848 (unsigned char *) psa.psa_nwid, 3);
1850 /* Set NWID in mmc. */
1851 m.w.mmw_netw_id_l = psa.psa_nwid[1];
1852 m.w.mmw_netw_id_h = psa.psa_nwid[0];
1854 (char *) &m.w.mmw_netw_id_l -
1856 (unsigned char *) &m.w.mmw_netw_id_l, 2);
1857 mmc_out(base, mmwoff(0, mmw_loopt_sel), 0x00);
1859 /* Disable NWID in the psa. */
1860 psa.psa_nwid_select = 0x00;
1862 (char *) &psa.psa_nwid_select -
1864 (unsigned char *) &psa.psa_nwid_select,
1867 /* Disable NWID in the mmc (no filtering). */
1868 mmc_out(base, mmwoff(0, mmw_loopt_sel),
1869 MMW_LOOPT_SEL_DIS_NWID);
1871 /* update the Wavelan checksum */
1872 update_psa_checksum(dev);
1874 /* Enable interrupts and restore flags. */
1875 spin_unlock_irqrestore(&lp->spinlock, flags);
1880 /*------------------------------------------------------------------*/
1882 * Wireless Handler : get NWID
1884 static int wavelan_get_nwid(struct net_device *dev,
1885 struct iw_request_info *info,
1886 union iwreq_data *wrqu,
1889 net_local *lp = netdev_priv(dev);
1891 unsigned long flags;
1894 /* Disable interrupts and save flags. */
1895 spin_lock_irqsave(&lp->spinlock, flags);
1897 /* Read the NWID. */
1899 (char *) psa.psa_nwid - (char *) &psa,
1900 (unsigned char *) psa.psa_nwid, 3);
1901 wrqu->nwid.value = (psa.psa_nwid[0] << 8) + psa.psa_nwid[1];
1902 wrqu->nwid.disabled = !(psa.psa_nwid_select);
1903 wrqu->nwid.fixed = 1; /* Superfluous */
1905 /* Enable interrupts and restore flags. */
1906 spin_unlock_irqrestore(&lp->spinlock, flags);
1911 /*------------------------------------------------------------------*/
1913 * Wireless Handler : set frequency
1915 static int wavelan_set_freq(struct net_device *dev,
1916 struct iw_request_info *info,
1917 union iwreq_data *wrqu,
1920 unsigned int base = dev->base_addr;
1921 net_local *lp = netdev_priv(dev);
1922 unsigned long flags;
1925 /* Disable interrupts and save flags. */
1926 spin_lock_irqsave(&lp->spinlock, flags);
1928 /* Attempt to recognise 2.00 cards (2.4 GHz frequency selectable). */
1929 if (!(mmc_in(base, mmroff(0, mmr_fee_status)) &
1930 (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY)))
1931 ret = wv_set_frequency(base, &(wrqu->freq));
1935 /* Enable interrupts and restore flags. */
1936 spin_unlock_irqrestore(&lp->spinlock, flags);
1941 /*------------------------------------------------------------------*/
1943 * Wireless Handler : get frequency
1945 static int wavelan_get_freq(struct net_device *dev,
1946 struct iw_request_info *info,
1947 union iwreq_data *wrqu,
1950 unsigned int base = dev->base_addr;
1951 net_local *lp = netdev_priv(dev);
1953 unsigned long flags;
1956 /* Disable interrupts and save flags. */
1957 spin_lock_irqsave(&lp->spinlock, flags);
1959 /* Attempt to recognise 2.00 cards (2.4 GHz frequency selectable).
1960 * Does it work for everybody, especially old cards? */
1961 if (!(mmc_in(base, mmroff(0, mmr_fee_status)) &
1962 (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY))) {
1963 unsigned short freq;
1965 /* Ask the EEPROM to read the frequency from the first area. */
1966 fee_read(base, 0x00, &freq, 1);
1967 wrqu->freq.m = ((freq >> 5) * 5 + 24000L) * 10000;
1971 (char *) &psa.psa_subband - (char *) &psa,
1972 (unsigned char *) &psa.psa_subband, 1);
1974 if (psa.psa_subband <= 4) {
1975 wrqu->freq.m = fixed_bands[psa.psa_subband];
1976 wrqu->freq.e = (psa.psa_subband != 0);
1981 /* Enable interrupts and restore flags. */
1982 spin_unlock_irqrestore(&lp->spinlock, flags);
1987 /*------------------------------------------------------------------*/
1989 * Wireless Handler : set level threshold
1991 static int wavelan_set_sens(struct net_device *dev,
1992 struct iw_request_info *info,
1993 union iwreq_data *wrqu,
1996 unsigned int base = dev->base_addr;
1997 net_local *lp = netdev_priv(dev);
1999 unsigned long flags;
2002 /* Disable interrupts and save flags. */
2003 spin_lock_irqsave(&lp->spinlock, flags);
2005 /* Set the level threshold. */
2006 /* We should complain loudly if wrqu->sens.fixed = 0, because we
2007 * can't set auto mode... */
2008 psa.psa_thr_pre_set = wrqu->sens.value & 0x3F;
2010 (char *) &psa.psa_thr_pre_set - (char *) &psa,
2011 (unsigned char *) &psa.psa_thr_pre_set, 1);
2012 /* update the Wavelan checksum */
2013 update_psa_checksum(dev);
2014 mmc_out(base, mmwoff(0, mmw_thr_pre_set),
2015 psa.psa_thr_pre_set);
2017 /* Enable interrupts and restore flags. */
2018 spin_unlock_irqrestore(&lp->spinlock, flags);
2023 /*------------------------------------------------------------------*/
2025 * Wireless Handler : get level threshold
2027 static int wavelan_get_sens(struct net_device *dev,
2028 struct iw_request_info *info,
2029 union iwreq_data *wrqu,
2032 net_local *lp = netdev_priv(dev);
2034 unsigned long flags;
2037 /* Disable interrupts and save flags. */
2038 spin_lock_irqsave(&lp->spinlock, flags);
2040 /* Read the level threshold. */
2042 (char *) &psa.psa_thr_pre_set - (char *) &psa,
2043 (unsigned char *) &psa.psa_thr_pre_set, 1);
2044 wrqu->sens.value = psa.psa_thr_pre_set & 0x3F;
2045 wrqu->sens.fixed = 1;
2047 /* Enable interrupts and restore flags. */
2048 spin_unlock_irqrestore(&lp->spinlock, flags);
2053 /*------------------------------------------------------------------*/
2055 * Wireless Handler : set encryption key
2057 static int wavelan_set_encode(struct net_device *dev,
2058 struct iw_request_info *info,
2059 union iwreq_data *wrqu,
2062 unsigned int base = dev->base_addr;
2063 net_local *lp = netdev_priv(dev);
2064 unsigned long flags;
2068 /* Disable interrupts and save flags. */
2069 spin_lock_irqsave(&lp->spinlock, flags);
2071 /* Check if capable of encryption */
2072 if (!mmc_encr(base)) {
2076 /* Check the size of the key */
2077 if((wrqu->encoding.length != 8) && (wrqu->encoding.length != 0)) {
2082 /* Basic checking... */
2083 if (wrqu->encoding.length == 8) {
2084 /* Copy the key in the driver */
2085 memcpy(psa.psa_encryption_key, extra,
2086 wrqu->encoding.length);
2087 psa.psa_encryption_select = 1;
2090 (char *) &psa.psa_encryption_select -
2092 (unsigned char *) &psa.
2093 psa_encryption_select, 8 + 1);
2095 mmc_out(base, mmwoff(0, mmw_encr_enable),
2096 MMW_ENCR_ENABLE_EN | MMW_ENCR_ENABLE_MODE);
2097 mmc_write(base, mmwoff(0, mmw_encr_key),
2098 (unsigned char *) &psa.
2099 psa_encryption_key, 8);
2102 /* disable encryption */
2103 if (wrqu->encoding.flags & IW_ENCODE_DISABLED) {
2104 psa.psa_encryption_select = 0;
2106 (char *) &psa.psa_encryption_select -
2108 (unsigned char *) &psa.
2109 psa_encryption_select, 1);
2111 mmc_out(base, mmwoff(0, mmw_encr_enable), 0);
2113 /* update the Wavelan checksum */
2114 update_psa_checksum(dev);
2117 /* Enable interrupts and restore flags. */
2118 spin_unlock_irqrestore(&lp->spinlock, flags);
2123 /*------------------------------------------------------------------*/
2125 * Wireless Handler : get encryption key
2127 static int wavelan_get_encode(struct net_device *dev,
2128 struct iw_request_info *info,
2129 union iwreq_data *wrqu,
2132 unsigned int base = dev->base_addr;
2133 net_local *lp = netdev_priv(dev);
2135 unsigned long flags;
2138 /* Disable interrupts and save flags. */
2139 spin_lock_irqsave(&lp->spinlock, flags);
2141 /* Check if encryption is available */
2142 if (!mmc_encr(base)) {
2145 /* Read the encryption key */
2147 (char *) &psa.psa_encryption_select -
2149 (unsigned char *) &psa.
2150 psa_encryption_select, 1 + 8);
2152 /* encryption is enabled ? */
2153 if (psa.psa_encryption_select)
2154 wrqu->encoding.flags = IW_ENCODE_ENABLED;
2156 wrqu->encoding.flags = IW_ENCODE_DISABLED;
2157 wrqu->encoding.flags |= mmc_encr(base);
2159 /* Copy the key to the user buffer */
2160 wrqu->encoding.length = 8;
2161 memcpy(extra, psa.psa_encryption_key, wrqu->encoding.length);
2164 /* Enable interrupts and restore flags. */
2165 spin_unlock_irqrestore(&lp->spinlock, flags);
2170 #ifdef WAVELAN_ROAMING_EXT
2171 /*------------------------------------------------------------------*/
2173 * Wireless Handler : set ESSID (domain)
2175 static int wavelan_set_essid(struct net_device *dev,
2176 struct iw_request_info *info,
2177 union iwreq_data *wrqu,
2180 net_local *lp = netdev_priv(dev);
2181 unsigned long flags;
2184 /* Disable interrupts and save flags. */
2185 spin_lock_irqsave(&lp->spinlock, flags);
2187 /* Check if disable */
2188 if(wrqu->data.flags == 0)
2189 lp->filter_domains = 0;
2191 char essid[IW_ESSID_MAX_SIZE + 1];
2194 /* Terminate the string */
2195 memcpy(essid, extra, wrqu->data.length);
2196 essid[IW_ESSID_MAX_SIZE] = '\0';
2198 #ifdef DEBUG_IOCTL_INFO
2199 printk(KERN_DEBUG "SetEssid : ``%s''\n", essid);
2200 #endif /* DEBUG_IOCTL_INFO */
2202 /* Convert to a number (note : Wavelan specific) */
2203 lp->domain_id = simple_strtoul(essid, &endp, 16);
2204 /* Has it worked ? */
2206 lp->filter_domains = 1;
2208 lp->filter_domains = 0;
2213 /* Enable interrupts and restore flags. */
2214 spin_unlock_irqrestore(&lp->spinlock, flags);
2219 /*------------------------------------------------------------------*/
2221 * Wireless Handler : get ESSID (domain)
2223 static int wavelan_get_essid(struct net_device *dev,
2224 struct iw_request_info *info,
2225 union iwreq_data *wrqu,
2228 net_local *lp = netdev_priv(dev);
2230 /* Is the domain ID active ? */
2231 wrqu->data.flags = lp->filter_domains;
2233 /* Copy Domain ID into a string (Wavelan specific) */
2234 /* Sound crazy, be we can't have a snprintf in the kernel !!! */
2235 sprintf(extra, "%lX", lp->domain_id);
2236 extra[IW_ESSID_MAX_SIZE] = '\0';
2238 /* Set the length */
2239 wrqu->data.length = strlen(extra);
2244 /*------------------------------------------------------------------*/
2246 * Wireless Handler : set AP address
2248 static int wavelan_set_wap(struct net_device *dev,
2249 struct iw_request_info *info,
2250 union iwreq_data *wrqu,
2253 #ifdef DEBUG_IOCTL_INFO
2254 printk(KERN_DEBUG "Set AP to : %02X:%02X:%02X:%02X:%02X:%02X\n",
2255 wrqu->ap_addr.sa_data[0],
2256 wrqu->ap_addr.sa_data[1],
2257 wrqu->ap_addr.sa_data[2],
2258 wrqu->ap_addr.sa_data[3],
2259 wrqu->ap_addr.sa_data[4],
2260 wrqu->ap_addr.sa_data[5]);
2261 #endif /* DEBUG_IOCTL_INFO */
2266 /*------------------------------------------------------------------*/
2268 * Wireless Handler : get AP address
2270 static int wavelan_get_wap(struct net_device *dev,
2271 struct iw_request_info *info,
2272 union iwreq_data *wrqu,
2275 /* Should get the real McCoy instead of own Ethernet address */
2276 memcpy(wrqu->ap_addr.sa_data, dev->dev_addr, WAVELAN_ADDR_SIZE);
2277 wrqu->ap_addr.sa_family = ARPHRD_ETHER;
2281 #endif /* WAVELAN_ROAMING_EXT */
2283 #ifdef WAVELAN_ROAMING
2284 /*------------------------------------------------------------------*/
2286 * Wireless Handler : set mode
2288 static int wavelan_set_mode(struct net_device *dev,
2289 struct iw_request_info *info,
2290 union iwreq_data *wrqu,
2293 net_local *lp = netdev_priv(dev);
2294 unsigned long flags;
2297 /* Disable interrupts and save flags. */
2298 spin_lock_irqsave(&lp->spinlock, flags);
2301 switch(wrqu->mode) {
2304 wv_roam_cleanup(dev);
2318 /* Enable interrupts and restore flags. */
2319 spin_unlock_irqrestore(&lp->spinlock, flags);
2324 /*------------------------------------------------------------------*/
2326 * Wireless Handler : get mode
2328 static int wavelan_get_mode(struct net_device *dev,
2329 struct iw_request_info *info,
2330 union iwreq_data *wrqu,
2334 wrqu->mode = IW_MODE_INFRA;
2336 wrqu->mode = IW_MODE_ADHOC;
2340 #endif /* WAVELAN_ROAMING */
2342 /*------------------------------------------------------------------*/
2344 * Wireless Handler : get range info
2346 static int wavelan_get_range(struct net_device *dev,
2347 struct iw_request_info *info,
2348 union iwreq_data *wrqu,
2351 unsigned int base = dev->base_addr;
2352 net_local *lp = netdev_priv(dev);
2353 struct iw_range *range = (struct iw_range *) extra;
2354 unsigned long flags;
2357 /* Set the length (very important for backward compatibility) */
2358 wrqu->data.length = sizeof(struct iw_range);
2360 /* Set all the info we don't care or don't know about to zero */
2361 memset(range, 0, sizeof(struct iw_range));
2363 /* Set the Wireless Extension versions */
2364 range->we_version_compiled = WIRELESS_EXT;
2365 range->we_version_source = 9;
2367 /* Set information in the range struct. */
2368 range->throughput = 1.4 * 1000 * 1000; /* don't argue on this ! */
2369 range->min_nwid = 0x0000;
2370 range->max_nwid = 0xFFFF;
2372 range->sensitivity = 0x3F;
2373 range->max_qual.qual = MMR_SGNL_QUAL;
2374 range->max_qual.level = MMR_SIGNAL_LVL;
2375 range->max_qual.noise = MMR_SILENCE_LVL;
2376 range->avg_qual.qual = MMR_SGNL_QUAL; /* Always max */
2377 /* Need to get better values for those two */
2378 range->avg_qual.level = 30;
2379 range->avg_qual.noise = 8;
2381 range->num_bitrates = 1;
2382 range->bitrate[0] = 2000000; /* 2 Mb/s */
2384 /* Event capability (kernel + driver) */
2385 range->event_capa[0] = (IW_EVENT_CAPA_MASK(0x8B02) |
2386 IW_EVENT_CAPA_MASK(0x8B04) |
2387 IW_EVENT_CAPA_MASK(0x8B06));
2388 range->event_capa[1] = IW_EVENT_CAPA_K_1;
2390 /* Disable interrupts and save flags. */
2391 spin_lock_irqsave(&lp->spinlock, flags);
2393 /* Attempt to recognise 2.00 cards (2.4 GHz frequency selectable). */
2394 if (!(mmc_in(base, mmroff(0, mmr_fee_status)) &
2395 (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY))) {
2396 range->num_channels = 10;
2397 range->num_frequency = wv_frequency_list(base, range->freq,
2398 IW_MAX_FREQUENCIES);
2400 range->num_channels = range->num_frequency = 0;
2402 /* Encryption supported ? */
2403 if (mmc_encr(base)) {
2404 range->encoding_size[0] = 8; /* DES = 64 bits key */
2405 range->num_encoding_sizes = 1;
2406 range->max_encoding_tokens = 1; /* Only one key possible */
2408 range->num_encoding_sizes = 0;
2409 range->max_encoding_tokens = 0;
2412 /* Enable interrupts and restore flags. */
2413 spin_unlock_irqrestore(&lp->spinlock, flags);
2418 /*------------------------------------------------------------------*/
2420 * Wireless Private Handler : set quality threshold
2422 static int wavelan_set_qthr(struct net_device *dev,
2423 struct iw_request_info *info,
2424 union iwreq_data *wrqu,
2427 unsigned int base = dev->base_addr;
2428 net_local *lp = netdev_priv(dev);
2430 unsigned long flags;
2432 /* Disable interrupts and save flags. */
2433 spin_lock_irqsave(&lp->spinlock, flags);
2435 psa.psa_quality_thr = *(extra) & 0x0F;
2437 (char *) &psa.psa_quality_thr - (char *) &psa,
2438 (unsigned char *) &psa.psa_quality_thr, 1);
2439 /* update the Wavelan checksum */
2440 update_psa_checksum(dev);
2441 mmc_out(base, mmwoff(0, mmw_quality_thr),
2442 psa.psa_quality_thr);
2444 /* Enable interrupts and restore flags. */
2445 spin_unlock_irqrestore(&lp->spinlock, flags);
2450 /*------------------------------------------------------------------*/
2452 * Wireless Private Handler : get quality threshold
2454 static int wavelan_get_qthr(struct net_device *dev,
2455 struct iw_request_info *info,
2456 union iwreq_data *wrqu,
2459 net_local *lp = netdev_priv(dev);
2461 unsigned long flags;
2463 /* Disable interrupts and save flags. */
2464 spin_lock_irqsave(&lp->spinlock, flags);
2467 (char *) &psa.psa_quality_thr - (char *) &psa,
2468 (unsigned char *) &psa.psa_quality_thr, 1);
2469 *(extra) = psa.psa_quality_thr & 0x0F;
2471 /* Enable interrupts and restore flags. */
2472 spin_unlock_irqrestore(&lp->spinlock, flags);
2477 #ifdef WAVELAN_ROAMING
2478 /*------------------------------------------------------------------*/
2480 * Wireless Private Handler : set roaming
2482 static int wavelan_set_roam(struct net_device *dev,
2483 struct iw_request_info *info,
2484 union iwreq_data *wrqu,
2487 net_local *lp = netdev_priv(dev);
2488 unsigned long flags;
2490 /* Disable interrupts and save flags. */
2491 spin_lock_irqsave(&lp->spinlock, flags);
2493 /* Note : should check if user == root */
2494 if(do_roaming && (*extra)==0)
2495 wv_roam_cleanup(dev);
2496 else if(do_roaming==0 && (*extra)!=0)
2499 do_roaming = (*extra);
2501 /* Enable interrupts and restore flags. */
2502 spin_unlock_irqrestore(&lp->spinlock, flags);
2507 /*------------------------------------------------------------------*/
2509 * Wireless Private Handler : get quality threshold
2511 static int wavelan_get_roam(struct net_device *dev,
2512 struct iw_request_info *info,
2513 union iwreq_data *wrqu,
2516 *(extra) = do_roaming;
2520 #endif /* WAVELAN_ROAMING */
2523 /*------------------------------------------------------------------*/
2525 * Wireless Private Handler : set histogram
2527 static int wavelan_set_histo(struct net_device *dev,
2528 struct iw_request_info *info,
2529 union iwreq_data *wrqu,
2532 net_local *lp = netdev_priv(dev);
2534 /* Check the number of intervals. */
2535 if (wrqu->data.length > 16) {
2539 /* Disable histo while we copy the addresses.
2540 * As we don't disable interrupts, we need to do this */
2543 /* Are there ranges to copy? */
2544 if (wrqu->data.length > 0) {
2545 /* Copy interval ranges to the driver */
2546 memcpy(lp->his_range, extra, wrqu->data.length);
2550 printk(KERN_DEBUG "Histo :");
2551 for(i = 0; i < wrqu->data.length; i++)
2552 printk(" %d", lp->his_range[i]);
2556 /* Reset result structure. */
2557 memset(lp->his_sum, 0x00, sizeof(long) * 16);
2560 /* Now we can set the number of ranges */
2561 lp->his_number = wrqu->data.length;
2566 /*------------------------------------------------------------------*/
2568 * Wireless Private Handler : get histogram
2570 static int wavelan_get_histo(struct net_device *dev,
2571 struct iw_request_info *info,
2572 union iwreq_data *wrqu,
2575 net_local *lp = netdev_priv(dev);
2577 /* Set the number of intervals. */
2578 wrqu->data.length = lp->his_number;
2580 /* Give back the distribution statistics */
2581 if(lp->his_number > 0)
2582 memcpy(extra, lp->his_sum, sizeof(long) * lp->his_number);
2586 #endif /* HISTOGRAM */
2588 /*------------------------------------------------------------------*/
2590 * Structures to export the Wireless Handlers
2593 static const struct iw_priv_args wavelan_private_args[] = {
2594 /*{ cmd, set_args, get_args, name } */
2595 { SIOCSIPQTHR, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, 0, "setqualthr" },
2596 { SIOCGIPQTHR, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, "getqualthr" },
2597 { SIOCSIPROAM, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, 0, "setroam" },
2598 { SIOCGIPROAM, 0, IW_PRIV_TYPE_BYTE | IW_PRIV_SIZE_FIXED | 1, "getroam" },
2599 { SIOCSIPHISTO, IW_PRIV_TYPE_BYTE | 16, 0, "sethisto" },
2600 { SIOCGIPHISTO, 0, IW_PRIV_TYPE_INT | 16, "gethisto" },
2603 static const iw_handler wavelan_handler[] =
2605 NULL, /* SIOCSIWNAME */
2606 wavelan_get_name, /* SIOCGIWNAME */
2607 wavelan_set_nwid, /* SIOCSIWNWID */
2608 wavelan_get_nwid, /* SIOCGIWNWID */
2609 wavelan_set_freq, /* SIOCSIWFREQ */
2610 wavelan_get_freq, /* SIOCGIWFREQ */
2611 #ifdef WAVELAN_ROAMING
2612 wavelan_set_mode, /* SIOCSIWMODE */
2613 wavelan_get_mode, /* SIOCGIWMODE */
2614 #else /* WAVELAN_ROAMING */
2615 NULL, /* SIOCSIWMODE */
2616 NULL, /* SIOCGIWMODE */
2617 #endif /* WAVELAN_ROAMING */
2618 wavelan_set_sens, /* SIOCSIWSENS */
2619 wavelan_get_sens, /* SIOCGIWSENS */
2620 NULL, /* SIOCSIWRANGE */
2621 wavelan_get_range, /* SIOCGIWRANGE */
2622 NULL, /* SIOCSIWPRIV */
2623 NULL, /* SIOCGIWPRIV */
2624 NULL, /* SIOCSIWSTATS */
2625 NULL, /* SIOCGIWSTATS */
2626 iw_handler_set_spy, /* SIOCSIWSPY */
2627 iw_handler_get_spy, /* SIOCGIWSPY */
2628 iw_handler_set_thrspy, /* SIOCSIWTHRSPY */
2629 iw_handler_get_thrspy, /* SIOCGIWTHRSPY */
2630 #ifdef WAVELAN_ROAMING_EXT
2631 wavelan_set_wap, /* SIOCSIWAP */
2632 wavelan_get_wap, /* SIOCGIWAP */
2633 NULL, /* -- hole -- */
2634 NULL, /* SIOCGIWAPLIST */
2635 NULL, /* -- hole -- */
2636 NULL, /* -- hole -- */
2637 wavelan_set_essid, /* SIOCSIWESSID */
2638 wavelan_get_essid, /* SIOCGIWESSID */
2639 #else /* WAVELAN_ROAMING_EXT */
2640 NULL, /* SIOCSIWAP */
2641 NULL, /* SIOCGIWAP */
2642 NULL, /* -- hole -- */
2643 NULL, /* SIOCGIWAPLIST */
2644 NULL, /* -- hole -- */
2645 NULL, /* -- hole -- */
2646 NULL, /* SIOCSIWESSID */
2647 NULL, /* SIOCGIWESSID */
2648 #endif /* WAVELAN_ROAMING_EXT */
2649 NULL, /* SIOCSIWNICKN */
2650 NULL, /* SIOCGIWNICKN */
2651 NULL, /* -- hole -- */
2652 NULL, /* -- hole -- */
2653 NULL, /* SIOCSIWRATE */
2654 NULL, /* SIOCGIWRATE */
2655 NULL, /* SIOCSIWRTS */
2656 NULL, /* SIOCGIWRTS */
2657 NULL, /* SIOCSIWFRAG */
2658 NULL, /* SIOCGIWFRAG */
2659 NULL, /* SIOCSIWTXPOW */
2660 NULL, /* SIOCGIWTXPOW */
2661 NULL, /* SIOCSIWRETRY */
2662 NULL, /* SIOCGIWRETRY */
2663 wavelan_set_encode, /* SIOCSIWENCODE */
2664 wavelan_get_encode, /* SIOCGIWENCODE */
2667 static const iw_handler wavelan_private_handler[] =
2669 wavelan_set_qthr, /* SIOCIWFIRSTPRIV */
2670 wavelan_get_qthr, /* SIOCIWFIRSTPRIV + 1 */
2671 #ifdef WAVELAN_ROAMING
2672 wavelan_set_roam, /* SIOCIWFIRSTPRIV + 2 */
2673 wavelan_get_roam, /* SIOCIWFIRSTPRIV + 3 */
2674 #else /* WAVELAN_ROAMING */
2675 NULL, /* SIOCIWFIRSTPRIV + 2 */
2676 NULL, /* SIOCIWFIRSTPRIV + 3 */
2677 #endif /* WAVELAN_ROAMING */
2679 wavelan_set_histo, /* SIOCIWFIRSTPRIV + 4 */
2680 wavelan_get_histo, /* SIOCIWFIRSTPRIV + 5 */
2681 #endif /* HISTOGRAM */
2684 static const struct iw_handler_def wavelan_handler_def =
2686 .num_standard = ARRAY_SIZE(wavelan_handler),
2687 .num_private = ARRAY_SIZE(wavelan_private_handler),
2688 .num_private_args = ARRAY_SIZE(wavelan_private_args),
2689 .standard = wavelan_handler,
2690 .private = wavelan_private_handler,
2691 .private_args = wavelan_private_args,
2692 .get_wireless_stats = wavelan_get_wireless_stats,
2695 /*------------------------------------------------------------------*/
2697 * Get wireless statistics
2698 * Called by /proc/net/wireless...
2701 wavelan_get_wireless_stats(struct net_device * dev)
2703 unsigned int base = dev->base_addr;
2704 net_local * lp = netdev_priv(dev);
2707 unsigned long flags;
2709 #ifdef DEBUG_IOCTL_TRACE
2710 printk(KERN_DEBUG "%s: ->wavelan_get_wireless_stats()\n", dev->name);
2713 /* Disable interrupts & save flags */
2714 spin_lock_irqsave(&lp->spinlock, flags);
2716 wstats = &lp->wstats;
2718 /* Get data from the mmc */
2719 mmc_out(base, mmwoff(0, mmw_freeze), 1);
2721 mmc_read(base, mmroff(0, mmr_dce_status), &m.mmr_dce_status, 1);
2722 mmc_read(base, mmroff(0, mmr_wrong_nwid_l), &m.mmr_wrong_nwid_l, 2);
2723 mmc_read(base, mmroff(0, mmr_thr_pre_set), &m.mmr_thr_pre_set, 4);
2725 mmc_out(base, mmwoff(0, mmw_freeze), 0);
2727 /* Copy data to wireless stuff */
2728 wstats->status = m.mmr_dce_status & MMR_DCE_STATUS;
2729 wstats->qual.qual = m.mmr_sgnl_qual & MMR_SGNL_QUAL;
2730 wstats->qual.level = m.mmr_signal_lvl & MMR_SIGNAL_LVL;
2731 wstats->qual.noise = m.mmr_silence_lvl & MMR_SILENCE_LVL;
2732 wstats->qual.updated = (((m.mmr_signal_lvl & MMR_SIGNAL_LVL_VALID) >> 7) |
2733 ((m.mmr_signal_lvl & MMR_SIGNAL_LVL_VALID) >> 6) |
2734 ((m.mmr_silence_lvl & MMR_SILENCE_LVL_VALID) >> 5));
2735 wstats->discard.nwid += (m.mmr_wrong_nwid_h << 8) | m.mmr_wrong_nwid_l;
2736 wstats->discard.code = 0L;
2737 wstats->discard.misc = 0L;
2739 /* ReEnable interrupts & restore flags */
2740 spin_unlock_irqrestore(&lp->spinlock, flags);
2742 #ifdef DEBUG_IOCTL_TRACE
2743 printk(KERN_DEBUG "%s: <-wavelan_get_wireless_stats()\n", dev->name);
2748 /************************* PACKET RECEPTION *************************/
2750 * This part deal with receiving the packets.
2751 * The interrupt handler get an interrupt when a packet has been
2752 * successfully received and called this part...
2755 /*------------------------------------------------------------------*/
2757 * Calculate the starting address of the frame pointed to by the receive
2758 * frame pointer and verify that the frame seem correct
2759 * (called by wv_packet_rcv())
2762 wv_start_of_frame(struct net_device * dev,
2763 int rfp, /* end of frame */
2764 int wrap) /* start of buffer */
2766 unsigned int base = dev->base_addr;
2770 rp = (rfp - 5 + RX_SIZE) % RX_SIZE;
2771 outb(rp & 0xff, PIORL(base));
2772 outb(((rp >> 8) & PIORH_MASK), PIORH(base));
2773 len = inb(PIOP(base));
2774 len |= inb(PIOP(base)) << 8;
2776 /* Sanity checks on size */
2778 if(len > MAXDATAZ + 100)
2780 #ifdef DEBUG_RX_ERROR
2781 printk(KERN_INFO "%s: wv_start_of_frame: Received frame too large, rfp %d len 0x%x\n",
2782 dev->name, rfp, len);
2787 /* Frame too short */
2790 #ifdef DEBUG_RX_ERROR
2791 printk(KERN_INFO "%s: wv_start_of_frame: Received null frame, rfp %d len 0x%x\n",
2792 dev->name, rfp, len);
2797 /* Wrap around buffer */
2798 if(len > ((wrap - (rfp - len) + RX_SIZE) % RX_SIZE)) /* magic formula ! */
2800 #ifdef DEBUG_RX_ERROR
2801 printk(KERN_INFO "%s: wv_start_of_frame: wrap around buffer, wrap %d rfp %d len 0x%x\n",
2802 dev->name, wrap, rfp, len);
2807 return((rp - len + RX_SIZE) % RX_SIZE);
2808 } /* wv_start_of_frame */
2810 /*------------------------------------------------------------------*/
2812 * This routine does the actual copy of data (including the ethernet
2813 * header structure) from the WaveLAN card to an sk_buff chain that
2814 * will be passed up to the network interface layer. NOTE: We
2815 * currently don't handle trailer protocols (neither does the rest of
2816 * the network interface), so if that is needed, it will (at least in
2817 * part) be added here. The contents of the receive ring buffer are
2818 * copied to a message chain that is then passed to the kernel.
2820 * Note: if any errors occur, the packet is "dropped on the floor"
2821 * (called by wv_packet_rcv())
2824 wv_packet_read(struct net_device * dev,
2828 net_local * lp = netdev_priv(dev);
2829 struct sk_buff * skb;
2831 #ifdef DEBUG_RX_TRACE
2832 printk(KERN_DEBUG "%s: ->wv_packet_read(0x%X, %d)\n",
2833 dev->name, fd_p, sksize);
2836 /* Allocate some buffer for the new packet */
2837 if((skb = dev_alloc_skb(sksize+2)) == (struct sk_buff *) NULL)
2839 #ifdef DEBUG_RX_ERROR
2840 printk(KERN_INFO "%s: wv_packet_read(): could not alloc_skb(%d, GFP_ATOMIC)\n",
2843 lp->stats.rx_dropped++;
2845 * Not only do we want to return here, but we also need to drop the
2846 * packet on the floor to clear the interrupt.
2851 skb_reserve(skb, 2);
2852 fd_p = read_ringbuf(dev, fd_p, (char *) skb_put(skb, sksize), sksize);
2853 skb->protocol = eth_type_trans(skb, dev);
2855 #ifdef DEBUG_RX_INFO
2856 wv_packet_info(skb_mac_header(skb), sksize, dev->name, "wv_packet_read");
2857 #endif /* DEBUG_RX_INFO */
2859 /* Statistics gathering & stuff associated.
2860 * It seem a bit messy with all the define, but it's really simple... */
2862 #ifdef IW_WIRELESS_SPY
2863 (lp->spy_data.spy_number > 0) ||
2864 #endif /* IW_WIRELESS_SPY */
2866 (lp->his_number > 0) ||
2867 #endif /* HISTOGRAM */
2868 #ifdef WAVELAN_ROAMING
2870 #endif /* WAVELAN_ROAMING */
2873 u_char stats[3]; /* Signal level, Noise level, Signal quality */
2875 /* read signal level, silence level and signal quality bytes */
2876 fd_p = read_ringbuf(dev, (fd_p + 4) % RX_SIZE + RX_BASE,
2878 #ifdef DEBUG_RX_INFO
2879 printk(KERN_DEBUG "%s: wv_packet_read(): Signal level %d/63, Silence level %d/63, signal quality %d/16\n",
2880 dev->name, stats[0] & 0x3F, stats[1] & 0x3F, stats[2] & 0x0F);
2883 #ifdef WAVELAN_ROAMING
2885 if(WAVELAN_BEACON(skb->data))
2886 wl_roam_gather(dev, skb->data, stats);
2887 #endif /* WAVELAN_ROAMING */
2890 wl_spy_gather(dev, skb_mac_header(skb) + WAVELAN_ADDR_SIZE, stats);
2891 #endif /* WIRELESS_SPY */
2893 wl_his_gather(dev, stats);
2894 #endif /* HISTOGRAM */
2898 * Hand the packet to the Network Module
2902 /* Keep stats up to date */
2903 dev->last_rx = jiffies;
2904 lp->stats.rx_packets++;
2905 lp->stats.rx_bytes += sksize;
2907 #ifdef DEBUG_RX_TRACE
2908 printk(KERN_DEBUG "%s: <-wv_packet_read()\n", dev->name);
2913 /*------------------------------------------------------------------*/
2915 * This routine is called by the interrupt handler to initiate a
2916 * packet transfer from the card to the network interface layer above
2917 * this driver. This routine checks if a buffer has been successfully
2918 * received by the WaveLAN card. If so, the routine wv_packet_read is
2919 * called to do the actual transfer of the card's data including the
2920 * ethernet header into a packet consisting of an sk_buff chain.
2921 * (called by wavelan_interrupt())
2922 * Note : the spinlock is already grabbed for us and irq are disabled.
2925 wv_packet_rcv(struct net_device * dev)
2927 unsigned int base = dev->base_addr;
2928 net_local * lp = netdev_priv(dev);
2938 #ifdef DEBUG_RX_TRACE
2939 printk(KERN_DEBUG "%s: ->wv_packet_rcv()\n", dev->name);
2942 /* Get the new receive frame pointer from the i82593 chip */
2943 outb(CR0_STATUS_2 | OP0_NOP, LCCR(base));
2944 i593_rfp = inb(LCSR(base));
2945 i593_rfp |= inb(LCSR(base)) << 8;
2946 i593_rfp %= RX_SIZE;
2948 /* Get the new receive frame pointer from the WaveLAN card.
2949 * It is 3 bytes more than the increment of the i82593 receive
2950 * frame pointer, for each packet. This is because it includes the
2951 * 3 roaming bytes added by the mmc.
2953 newrfp = inb(RPLL(base));
2954 newrfp |= inb(RPLH(base)) << 8;
2957 #ifdef DEBUG_RX_INFO
2958 printk(KERN_DEBUG "%s: wv_packet_rcv(): i593_rfp %d stop %d newrfp %d lp->rfp %d\n",
2959 dev->name, i593_rfp, lp->stop, newrfp, lp->rfp);
2962 #ifdef DEBUG_RX_ERROR
2963 /* If no new frame pointer... */
2964 if(lp->overrunning || newrfp == lp->rfp)
2965 printk(KERN_INFO "%s: wv_packet_rcv(): no new frame: i593_rfp %d stop %d newrfp %d lp->rfp %d\n",
2966 dev->name, i593_rfp, lp->stop, newrfp, lp->rfp);
2969 /* Read all frames (packets) received */
2970 while(newrfp != lp->rfp)
2972 /* A frame is composed of the packet, followed by a status word,
2973 * the length of the frame (word) and the mmc info (SNR & qual).
2974 * It's because the length is at the end that we can only scan
2975 * frames backward. */
2977 /* Find the first frame by skipping backwards over the frames */
2978 rp = newrfp; /* End of last frame */
2979 while(((f_start = wv_start_of_frame(dev, rp, newrfp)) != lp->rfp) &&
2983 /* If we had a problem */
2986 #ifdef DEBUG_RX_ERROR
2987 printk(KERN_INFO "wavelan_cs: cannot find start of frame ");
2988 printk(" i593_rfp %d stop %d newrfp %d lp->rfp %d\n",
2989 i593_rfp, lp->stop, newrfp, lp->rfp);
2991 lp->rfp = rp; /* Get to the last usable frame */
2995 /* f_start point to the beggining of the first frame received
2996 * and rp to the beggining of the next one */
2998 /* Read status & length of the frame */
2999 stat_ptr = (rp - 7 + RX_SIZE) % RX_SIZE;
3000 stat_ptr = read_ringbuf(dev, stat_ptr, c, 4);
3001 status = c[0] | (c[1] << 8);
3002 len = c[2] | (c[3] << 8);
3005 if((status & RX_RCV_OK) != RX_RCV_OK)
3007 lp->stats.rx_errors++;
3008 if(status & RX_NO_SFD)
3009 lp->stats.rx_frame_errors++;
3010 if(status & RX_CRC_ERR)
3011 lp->stats.rx_crc_errors++;
3012 if(status & RX_OVRRUN)
3013 lp->stats.rx_over_errors++;
3015 #ifdef DEBUG_RX_FAIL
3016 printk(KERN_DEBUG "%s: wv_packet_rcv(): packet not received ok, status = 0x%x\n",
3021 /* Read the packet and transmit to Linux */
3022 wv_packet_read(dev, f_start, len - 2);
3024 /* One frame has been processed, skip it */
3029 * Update the frame stop register, but set it to less than
3030 * the full 8K to allow space for 3 bytes of signal strength
3033 lp->stop = (i593_rfp + RX_SIZE - ((RX_SIZE / 64) * 3)) % RX_SIZE;
3034 outb(OP0_SWIT_TO_PORT_1 | CR0_CHNL, LCCR(base));
3035 outb(CR1_STOP_REG_UPDATE | (lp->stop >> RX_SIZE_SHIFT), LCCR(base));
3036 outb(OP1_SWIT_TO_PORT_0, LCCR(base));
3038 #ifdef DEBUG_RX_TRACE
3039 printk(KERN_DEBUG "%s: <-wv_packet_rcv()\n", dev->name);
3043 /*********************** PACKET TRANSMISSION ***********************/
3045 * This part deal with sending packet through the wavelan
3046 * We copy the packet to the send buffer and then issue the send
3047 * command to the i82593. The result of this operation will be
3048 * checked in wavelan_interrupt()
3051 /*------------------------------------------------------------------*/
3053 * This routine fills in the appropriate registers and memory
3054 * locations on the WaveLAN card and starts the card off on
3056 * (called in wavelan_packet_xmit())
3059 wv_packet_write(struct net_device * dev,
3063 net_local * lp = netdev_priv(dev);
3064 unsigned int base = dev->base_addr;
3065 unsigned long flags;
3067 register u_short xmtdata_base = TX_BASE;
3069 #ifdef DEBUG_TX_TRACE
3070 printk(KERN_DEBUG "%s: ->wv_packet_write(%d)\n", dev->name, length);
3073 spin_lock_irqsave(&lp->spinlock, flags);
3075 /* Write the length of data buffer followed by the buffer */
3076 outb(xmtdata_base & 0xff, PIORL(base));
3077 outb(((xmtdata_base >> 8) & PIORH_MASK) | PIORH_SEL_TX, PIORH(base));
3078 outb(clen & 0xff, PIOP(base)); /* lsb */
3079 outb(clen >> 8, PIOP(base)); /* msb */
3082 outsb(PIOP(base), buf, clen);
3084 /* Indicate end of transmit chain */
3085 outb(OP0_NOP, PIOP(base));
3086 /* josullvn@cs.cmu.edu: need to send a second NOP for alignment... */
3087 outb(OP0_NOP, PIOP(base));
3089 /* Reset the transmit DMA pointer */
3090 hacr_write_slow(base, HACR_PWR_STAT | HACR_TX_DMA_RESET);
3091 hacr_write(base, HACR_DEFAULT);
3092 /* Send the transmit command */
3093 wv_82593_cmd(dev, "wv_packet_write(): transmit",
3094 OP0_TRANSMIT, SR0_NO_RESULT);
3096 /* Make sure the watchdog will keep quiet for a while */
3097 dev->trans_start = jiffies;
3099 /* Keep stats up to date */
3100 lp->stats.tx_bytes += length;
3102 spin_unlock_irqrestore(&lp->spinlock, flags);
3104 #ifdef DEBUG_TX_INFO
3105 wv_packet_info((u_char *) buf, length, dev->name, "wv_packet_write");
3106 #endif /* DEBUG_TX_INFO */
3108 #ifdef DEBUG_TX_TRACE
3109 printk(KERN_DEBUG "%s: <-wv_packet_write()\n", dev->name);
3113 /*------------------------------------------------------------------*/
3115 * This routine is called when we want to send a packet (NET3 callback)
3116 * In this routine, we check if the harware is ready to accept
3117 * the packet. We also prevent reentrance. Then, we call the function
3118 * to send the packet...
3121 wavelan_packet_xmit(struct sk_buff * skb,
3122 struct net_device * dev)
3124 net_local * lp = netdev_priv(dev);
3125 unsigned long flags;
3127 #ifdef DEBUG_TX_TRACE
3128 printk(KERN_DEBUG "%s: ->wavelan_packet_xmit(0x%X)\n", dev->name,
3133 * Block a timer-based transmit from overlapping a previous transmit.
3134 * In other words, prevent reentering this routine.
3136 netif_stop_queue(dev);
3138 /* If somebody has asked to reconfigure the controller,
3139 * we can do it now */
3140 if(lp->reconfig_82593)
3142 spin_lock_irqsave(&lp->spinlock, flags); /* Disable interrupts */
3143 wv_82593_config(dev);
3144 spin_unlock_irqrestore(&lp->spinlock, flags); /* Re-enable interrupts */
3145 /* Note : the configure procedure was totally synchronous,
3146 * so the Tx buffer is now free */
3149 #ifdef DEBUG_TX_ERROR
3151 printk(KERN_INFO "skb has next\n");
3154 /* Check if we need some padding */
3155 /* Note : on wireless the propagation time is in the order of 1us,
3156 * and we don't have the Ethernet specific requirement of beeing
3157 * able to detect collisions, therefore in theory we don't really
3158 * need to pad. Jean II */
3159 if (skb_padto(skb, ETH_ZLEN))
3162 wv_packet_write(dev, skb->data, skb->len);
3166 #ifdef DEBUG_TX_TRACE
3167 printk(KERN_DEBUG "%s: <-wavelan_packet_xmit()\n", dev->name);
3172 /********************** HARDWARE CONFIGURATION **********************/
3174 * This part do the real job of starting and configuring the hardware.
3177 /*------------------------------------------------------------------*/
3179 * Routine to initialize the Modem Management Controller.
3180 * (called by wv_hw_config())
3183 wv_mmc_init(struct net_device * dev)
3185 unsigned int base = dev->base_addr;
3189 int i; /* Loop counter */
3191 #ifdef DEBUG_CONFIG_TRACE
3192 printk(KERN_DEBUG "%s: ->wv_mmc_init()\n", dev->name);
3195 /* Read the parameter storage area */
3196 psa_read(dev, 0, (unsigned char *) &psa, sizeof(psa));
3199 * Check the first three octets of the MAC addr for the manufacturer's code.
3200 * Note: If you get the error message below, you've got a
3201 * non-NCR/AT&T/Lucent PCMCIA cards, see wavelan_cs.h for detail on
3202 * how to configure your card...
3204 for (i = 0; i < ARRAY_SIZE(MAC_ADDRESSES); i++)
3205 if ((psa.psa_univ_mac_addr[0] == MAC_ADDRESSES[i][0]) &&
3206 (psa.psa_univ_mac_addr[1] == MAC_ADDRESSES[i][1]) &&
3207 (psa.psa_univ_mac_addr[2] == MAC_ADDRESSES[i][2]))
3210 /* If we have not found it... */
3211 if (i == ARRAY_SIZE(MAC_ADDRESSES))
3213 #ifdef DEBUG_CONFIG_ERRORS
3214 printk(KERN_WARNING "%s: wv_mmc_init(): Invalid MAC address: %02X:%02X:%02X:...\n",
3215 dev->name, psa.psa_univ_mac_addr[0],
3216 psa.psa_univ_mac_addr[1], psa.psa_univ_mac_addr[2]);
3221 /* Get the MAC address */
3222 memcpy(&dev->dev_addr[0], &psa.psa_univ_mac_addr[0], WAVELAN_ADDR_SIZE);
3224 #ifdef USE_PSA_CONFIG
3225 configured = psa.psa_conf_status & 1;
3230 /* Is the PSA is not configured */
3233 /* User will be able to configure NWID after (with iwconfig) */
3234 psa.psa_nwid[0] = 0;
3235 psa.psa_nwid[1] = 0;
3237 /* As NWID is not set : no NWID checking */
3238 psa.psa_nwid_select = 0;
3240 /* Disable encryption */
3241 psa.psa_encryption_select = 0;
3243 /* Set to standard values
3246 * 0x04 for PCMCIA and 2.00 card (AT&T 407-024689/E document)
3248 if (psa.psa_comp_number & 1)
3249 psa.psa_thr_pre_set = 0x01;
3251 psa.psa_thr_pre_set = 0x04;
3252 psa.psa_quality_thr = 0x03;
3254 /* It is configured */
3255 psa.psa_conf_status |= 1;
3257 #ifdef USE_PSA_CONFIG
3259 psa_write(dev, (char *)psa.psa_nwid - (char *)&psa,
3260 (unsigned char *)psa.psa_nwid, 4);
3261 psa_write(dev, (char *)&psa.psa_thr_pre_set - (char *)&psa,
3262 (unsigned char *)&psa.psa_thr_pre_set, 1);
3263 psa_write(dev, (char *)&psa.psa_quality_thr - (char *)&psa,
3264 (unsigned char *)&psa.psa_quality_thr, 1);
3265 psa_write(dev, (char *)&psa.psa_conf_status - (char *)&psa,
3266 (unsigned char *)&psa.psa_conf_status, 1);
3267 /* update the Wavelan checksum */
3268 update_psa_checksum(dev);
3269 #endif /* USE_PSA_CONFIG */
3272 /* Zero the mmc structure */
3273 memset(&m, 0x00, sizeof(m));
3275 /* Copy PSA info to the mmc */
3276 m.mmw_netw_id_l = psa.psa_nwid[1];
3277 m.mmw_netw_id_h = psa.psa_nwid[0];
3279 if(psa.psa_nwid_select & 1)
3280 m.mmw_loopt_sel = 0x00;
3282 m.mmw_loopt_sel = MMW_LOOPT_SEL_DIS_NWID;
3284 memcpy(&m.mmw_encr_key, &psa.psa_encryption_key,
3285 sizeof(m.mmw_encr_key));
3287 if(psa.psa_encryption_select)
3288 m.mmw_encr_enable = MMW_ENCR_ENABLE_EN | MMW_ENCR_ENABLE_MODE;
3290 m.mmw_encr_enable = 0;
3292 m.mmw_thr_pre_set = psa.psa_thr_pre_set & 0x3F;
3293 m.mmw_quality_thr = psa.psa_quality_thr & 0x0F;
3296 * Set default modem control parameters.
3297 * See NCR document 407-0024326 Rev. A.
3299 m.mmw_jabber_enable = 0x01;
3300 m.mmw_anten_sel = MMW_ANTEN_SEL_ALG_EN;
3302 m.mmw_mod_delay = 0x04;
3303 m.mmw_jam_time = 0x38;
3305 m.mmw_des_io_invert = 0;
3307 m.mmw_decay_prm = 0;
3308 m.mmw_decay_updat_prm = 0;
3310 /* Write all info to mmc */
3311 mmc_write(base, 0, (u_char *)&m, sizeof(m));
3313 /* The following code start the modem of the 2.00 frequency
3314 * selectable cards at power on. It's not strictly needed for the
3315 * following boots...
3316 * The original patch was by Joe Finney for the PCMCIA driver, but
3317 * I've cleaned it a bit and add documentation.
3318 * Thanks to Loeke Brederveld from Lucent for the info.
3321 /* Attempt to recognise 2.00 cards (2.4 GHz frequency selectable)
3322 * (does it work for everybody ? - especially old cards...) */
3323 /* Note : WFREQSEL verify that it is able to read from EEprom
3324 * a sensible frequency (address 0x00) + that MMR_FEE_STATUS_ID
3325 * is 0xA (Xilinx version) or 0xB (Ariadne version).
3326 * My test is more crude but do work... */
3327 if(!(mmc_in(base, mmroff(0, mmr_fee_status)) &
3328 (MMR_FEE_STATUS_DWLD | MMR_FEE_STATUS_BUSY)))
3330 /* We must download the frequency parameters to the
3331 * synthetisers (from the EEprom - area 1)
3332 * Note : as the EEprom is auto decremented, we set the end
3334 m.mmw_fee_addr = 0x0F;
3335 m.mmw_fee_ctrl = MMW_FEE_CTRL_READ | MMW_FEE_CTRL_DWLD;
3336 mmc_write(base, (char *)&m.mmw_fee_ctrl - (char *)&m,
3337 (unsigned char *)&m.mmw_fee_ctrl, 2);
3339 /* Wait until the download is finished */
3340 fee_wait(base, 100, 100);
3342 #ifdef DEBUG_CONFIG_INFO
3343 /* The frequency was in the last word downloaded... */
3344 mmc_read(base, (char *)&m.mmw_fee_data_l - (char *)&m,
3345 (unsigned char *)&m.mmw_fee_data_l, 2);
3347 /* Print some info for the user */
3348 printk(KERN_DEBUG "%s: Wavelan 2.00 recognised (frequency select) : Current frequency = %ld\n",
3350 ((m.mmw_fee_data_h << 4) |
3351 (m.mmw_fee_data_l >> 4)) * 5 / 2 + 24000L);
3354 /* We must now download the power adjust value (gain) to
3355 * the synthetisers (from the EEprom - area 7 - DAC) */
3356 m.mmw_fee_addr = 0x61;
3357 m.mmw_fee_ctrl = MMW_FEE_CTRL_READ | MMW_FEE_CTRL_DWLD;
3358 mmc_write(base, (char *)&m.mmw_fee_ctrl - (char *)&m,
3359 (unsigned char *)&m.mmw_fee_ctrl, 2);
3361 /* Wait until the download is finished */
3362 } /* if 2.00 card */
3364 #ifdef DEBUG_CONFIG_TRACE
3365 printk(KERN_DEBUG "%s: <-wv_mmc_init()\n", dev->name);
3370 /*------------------------------------------------------------------*/
3372 * Routine to gracefully turn off reception, and wait for any commands
3374 * (called in wv_ru_start() and wavelan_close() and wavelan_event())
3377 wv_ru_stop(struct net_device * dev)
3379 unsigned int base = dev->base_addr;
3380 net_local * lp = netdev_priv(dev);
3381 unsigned long flags;
3385 #ifdef DEBUG_CONFIG_TRACE
3386 printk(KERN_DEBUG "%s: ->wv_ru_stop()\n", dev->name);
3389 spin_lock_irqsave(&lp->spinlock, flags);
3391 /* First, send the LAN controller a stop receive command */
3392 wv_82593_cmd(dev, "wv_graceful_shutdown(): stop-rcv",
3393 OP0_STOP_RCV, SR0_NO_RESULT);
3395 /* Then, spin until the receive unit goes idle */
3400 outb(OP0_NOP | CR0_STATUS_3, LCCR(base));
3401 status = inb(LCSR(base));
3403 while(((status & SR3_RCV_STATE_MASK) != SR3_RCV_IDLE) && (spin-- > 0));
3405 /* Now, spin until the chip finishes executing its current command */
3409 outb(OP0_NOP | CR0_STATUS_3, LCCR(base));
3410 status = inb(LCSR(base));
3412 while(((status & SR3_EXEC_STATE_MASK) != SR3_EXEC_IDLE) && (spin-- > 0));
3414 spin_unlock_irqrestore(&lp->spinlock, flags);
3416 /* If there was a problem */
3419 #ifdef DEBUG_CONFIG_ERRORS
3420 printk(KERN_INFO "%s: wv_ru_stop(): The chip doesn't want to stop...\n",
3426 #ifdef DEBUG_CONFIG_TRACE
3427 printk(KERN_DEBUG "%s: <-wv_ru_stop()\n", dev->name);
3432 /*------------------------------------------------------------------*/
3434 * This routine starts the receive unit running. First, it checks if
3435 * the card is actually ready. Then the card is instructed to receive
3437 * (called in wv_hw_reset() & wavelan_open())
3440 wv_ru_start(struct net_device * dev)
3442 unsigned int base = dev->base_addr;
3443 net_local * lp = netdev_priv(dev);
3444 unsigned long flags;
3446 #ifdef DEBUG_CONFIG_TRACE
3447 printk(KERN_DEBUG "%s: ->wv_ru_start()\n", dev->name);
3451 * We need to start from a quiescent state. To do so, we could check
3452 * if the card is already running, but instead we just try to shut
3453 * it down. First, we disable reception (in case it was already enabled).
3455 if(!wv_ru_stop(dev))
3458 spin_lock_irqsave(&lp->spinlock, flags);
3460 /* Now we know that no command is being executed. */
3462 /* Set the receive frame pointer and stop pointer */
3464 outb(OP0_SWIT_TO_PORT_1 | CR0_CHNL, LCCR(base));
3466 /* Reset ring management. This sets the receive frame pointer to 1 */
3467 outb(OP1_RESET_RING_MNGMT, LCCR(base));
3470 /* XXX the i82593 manual page 6-4 seems to indicate that the stop register
3471 should be set as below */
3472 /* outb(CR1_STOP_REG_UPDATE|((RX_SIZE - 0x40)>> RX_SIZE_SHIFT),LCCR(base));*/
3474 /* but I set it 0 instead */
3477 /* but I set it to 3 bytes per packet less than 8K */
3478 lp->stop = (0 + RX_SIZE - ((RX_SIZE / 64) * 3)) % RX_SIZE;
3480 outb(CR1_STOP_REG_UPDATE | (lp->stop >> RX_SIZE_SHIFT), LCCR(base));
3481 outb(OP1_INT_ENABLE, LCCR(base));
3482 outb(OP1_SWIT_TO_PORT_0, LCCR(base));
3484 /* Reset receive DMA pointer */
3485 hacr_write_slow(base, HACR_PWR_STAT | HACR_TX_DMA_RESET);
3486 hacr_write_slow(base, HACR_DEFAULT);
3488 /* Receive DMA on channel 1 */
3489 wv_82593_cmd(dev, "wv_ru_start(): rcv-enable",
3490 CR0_CHNL | OP0_RCV_ENABLE, SR0_NO_RESULT);
3492 #ifdef DEBUG_I82593_SHOW
3498 /* spin until the chip starts receiving */
3501 outb(OP0_NOP | CR0_STATUS_3, LCCR(base));
3502 status = inb(LCSR(base));
3506 while(((status & SR3_RCV_STATE_MASK) != SR3_RCV_ACTIVE) &&
3507 ((status & SR3_RCV_STATE_MASK) != SR3_RCV_READY));
3508 printk(KERN_DEBUG "rcv status is 0x%x [i:%d]\n",
3509 (status & SR3_RCV_STATE_MASK), i);
3513 spin_unlock_irqrestore(&lp->spinlock, flags);
3515 #ifdef DEBUG_CONFIG_TRACE
3516 printk(KERN_DEBUG "%s: <-wv_ru_start()\n", dev->name);
3521 /*------------------------------------------------------------------*/
3523 * This routine does a standard config of the WaveLAN controller (i82593).
3524 * In the ISA driver, this is integrated in wavelan_hardware_reset()
3525 * (called by wv_hw_config(), wv_82593_reconfig() & wavelan_packet_xmit())
3528 wv_82593_config(struct net_device * dev)
3530 unsigned int base = dev->base_addr;
3531 net_local * lp = netdev_priv(dev);
3532 struct i82593_conf_block cfblk;
3535 #ifdef DEBUG_CONFIG_TRACE
3536 printk(KERN_DEBUG "%s: ->wv_82593_config()\n", dev->name);
3539 /* Create & fill i82593 config block
3541 * Now conform to Wavelan document WCIN085B
3543 memset(&cfblk, 0x00, sizeof(struct i82593_conf_block));
3544 cfblk.d6mod = FALSE; /* Run in i82593 advanced mode */
3545 cfblk.fifo_limit = 5; /* = 56 B rx and 40 B tx fifo thresholds */
3546 cfblk.forgnesi = FALSE; /* 0=82C501, 1=AMD7992B compatibility */
3548 cfblk.throttle_enb = FALSE;
3549 cfblk.contin = TRUE; /* enable continuous mode */
3550 cfblk.cntrxint = FALSE; /* enable continuous mode receive interrupts */
3551 cfblk.addr_len = WAVELAN_ADDR_SIZE;
3552 cfblk.acloc = TRUE; /* Disable source addr insertion by i82593 */
3553 cfblk.preamb_len = 0; /* 2 bytes preamble (SFD) */
3554 cfblk.loopback = FALSE;
3555 cfblk.lin_prio = 0; /* conform to 802.3 backoff algorithm */
3556 cfblk.exp_prio = 5; /* conform to 802.3 backoff algorithm */
3557 cfblk.bof_met = 1; /* conform to 802.3 backoff algorithm */
3558 cfblk.ifrm_spc = 0x20 >> 4; /* 32 bit times interframe spacing */
3559 cfblk.slottim_low = 0x20 >> 5; /* 32 bit times slot time */
3560 cfblk.slottim_hi = 0x0;
3561 cfblk.max_retr = 15;
3562 cfblk.prmisc = ((lp->promiscuous) ? TRUE: FALSE); /* Promiscuous mode */
3563 cfblk.bc_dis = FALSE; /* Enable broadcast reception */
3564 cfblk.crs_1 = TRUE; /* Transmit without carrier sense */
3565 cfblk.nocrc_ins = FALSE; /* i82593 generates CRC */
3566 cfblk.crc_1632 = FALSE; /* 32-bit Autodin-II CRC */
3567 cfblk.crs_cdt = FALSE; /* CD not to be interpreted as CS */
3568 cfblk.cs_filter = 0; /* CS is recognized immediately */
3569 cfblk.crs_src = FALSE; /* External carrier sense */
3570 cfblk.cd_filter = 0; /* CD is recognized immediately */
3571 cfblk.min_fr_len = ETH_ZLEN >> 2; /* Minimum frame length 64 bytes */
3572 cfblk.lng_typ = FALSE; /* Length field > 1500 = type field */
3573 cfblk.lng_fld = TRUE; /* Disable 802.3 length field check */
3574 cfblk.rxcrc_xf = TRUE; /* Don't transfer CRC to memory */
3575 cfblk.artx = TRUE; /* Disable automatic retransmission */
3576 cfblk.sarec = TRUE; /* Disable source addr trig of CD */
3577 cfblk.tx_jabber = TRUE; /* Disable jabber jam sequence */
3578 cfblk.hash_1 = FALSE; /* Use bits 0-5 in mc address hash */
3579 cfblk.lbpkpol = TRUE; /* Loopback pin active high */
3580 cfblk.fdx = FALSE; /* Disable full duplex operation */
3581 cfblk.dummy_6 = 0x3f; /* all ones */
3582 cfblk.mult_ia = FALSE; /* No multiple individual addresses */
3583 cfblk.dis_bof = FALSE; /* Disable the backoff algorithm ?! */
3584 cfblk.dummy_1 = TRUE; /* set to 1 */
3585 cfblk.tx_ifs_retrig = 3; /* Hmm... Disabled */
3586 #ifdef MULTICAST_ALL
3587 cfblk.mc_all = (lp->allmulticast ? TRUE: FALSE); /* Allow all multicasts */
3589 cfblk.mc_all = FALSE; /* No multicast all mode */
3591 cfblk.rcv_mon = 0; /* Monitor mode disabled */
3592 cfblk.frag_acpt = TRUE; /* Do not accept fragments */
3593 cfblk.tstrttrs = FALSE; /* No start transmission threshold */
3594 cfblk.fretx = TRUE; /* FIFO automatic retransmission */
3595 cfblk.syncrqs = FALSE; /* Synchronous DRQ deassertion... */
3596 cfblk.sttlen = TRUE; /* 6 byte status registers */
3597 cfblk.rx_eop = TRUE; /* Signal EOP on packet reception */
3598 cfblk.tx_eop = TRUE; /* Signal EOP on packet transmission */
3599 cfblk.rbuf_size = RX_SIZE>>11; /* Set receive buffer size */
3600 cfblk.rcvstop = TRUE; /* Enable Receive Stop Register */
3602 #ifdef DEBUG_I82593_SHOW
3604 u_char *c = (u_char *) &cfblk;
3606 printk(KERN_DEBUG "wavelan_cs: config block:");
3607 for(i = 0; i < sizeof(struct i82593_conf_block); i++,c++)
3609 if((i % 16) == 0) printk("\n" KERN_DEBUG);
3610 printk("%02x ", *c);
3616 /* Copy the config block to the i82593 */
3617 outb(TX_BASE & 0xff, PIORL(base));
3618 outb(((TX_BASE >> 8) & PIORH_MASK) | PIORH_SEL_TX, PIORH(base));
3619 outb(sizeof(struct i82593_conf_block) & 0xff, PIOP(base)); /* lsb */
3620 outb(sizeof(struct i82593_conf_block) >> 8, PIOP(base)); /* msb */
3621 outsb(PIOP(base), (char *) &cfblk, sizeof(struct i82593_conf_block));
3623 /* reset transmit DMA pointer */
3624 hacr_write_slow(base, HACR_PWR_STAT | HACR_TX_DMA_RESET);
3625 hacr_write(base, HACR_DEFAULT);
3626 if(!wv_82593_cmd(dev, "wv_82593_config(): configure",
3627 OP0_CONFIGURE, SR0_CONFIGURE_DONE))
3630 /* Initialize adapter's ethernet MAC address */
3631 outb(TX_BASE & 0xff, PIORL(base));
3632 outb(((TX_BASE >> 8) & PIORH_MASK) | PIORH_SEL_TX, PIORH(base));
3633 outb(WAVELAN_ADDR_SIZE, PIOP(base)); /* byte count lsb */
3634 outb(0, PIOP(base)); /* byte count msb */
3635 outsb(PIOP(base), &dev->dev_addr[0], WAVELAN_ADDR_SIZE);
3637 /* reset transmit DMA pointer */
3638 hacr_write_slow(base, HACR_PWR_STAT | HACR_TX_DMA_RESET);
3639 hacr_write(base, HACR_DEFAULT);
3640 if(!wv_82593_cmd(dev, "wv_82593_config(): ia-setup",
3641 OP0_IA_SETUP, SR0_IA_SETUP_DONE))
3644 #ifdef WAVELAN_ROAMING
3645 /* If roaming is enabled, join the "Beacon Request" multicast group... */
3646 /* But only if it's not in there already! */
3648 dev_mc_add(dev,WAVELAN_BEACON_ADDRESS, WAVELAN_ADDR_SIZE, 1);
3649 #endif /* WAVELAN_ROAMING */
3651 /* If any multicast address to set */
3654 struct dev_mc_list * dmi;
3655 int addrs_len = WAVELAN_ADDR_SIZE * lp->mc_count;
3657 #ifdef DEBUG_CONFIG_INFO
3658 DECLARE_MAC_BUF(mac);
3659 printk(KERN_DEBUG "%s: wv_hw_config(): set %d multicast addresses:\n",
3660 dev->name, lp->mc_count);
3661 for(dmi=dev->mc_list; dmi; dmi=dmi->next)
3662 printk(KERN_DEBUG " %s\n",
3663 print_mac(mac, dmi->dmi_addr));
3666 /* Initialize adapter's ethernet multicast addresses */
3667 outb(TX_BASE & 0xff, PIORL(base));
3668 outb(((TX_BASE >> 8) & PIORH_MASK) | PIORH_SEL_TX, PIORH(base));
3669 outb(addrs_len & 0xff, PIOP(base)); /* byte count lsb */
3670 outb((addrs_len >> 8), PIOP(base)); /* byte count msb */
3671 for(dmi=dev->mc_list; dmi; dmi=dmi->next)
3672 outsb(PIOP(base), dmi->dmi_addr, dmi->dmi_addrlen);
3674 /* reset transmit DMA pointer */
3675 hacr_write_slow(base, HACR_PWR_STAT | HACR_TX_DMA_RESET);
3676 hacr_write(base, HACR_DEFAULT);
3677 if(!wv_82593_cmd(dev, "wv_82593_config(): mc-setup",
3678 OP0_MC_SETUP, SR0_MC_SETUP_DONE))
3680 lp->mc_count = dev->mc_count; /* remember to avoid repeated reset */
3683 /* Job done, clear the flag */
3684 lp->reconfig_82593 = FALSE;
3686 #ifdef DEBUG_CONFIG_TRACE
3687 printk(KERN_DEBUG "%s: <-wv_82593_config()\n", dev->name);
3692 /*------------------------------------------------------------------*/
3694 * Read the Access Configuration Register, perform a software reset,
3695 * and then re-enable the card's software.
3697 * If I understand correctly : reset the pcmcia interface of the
3699 * (called by wv_config())
3702 wv_pcmcia_reset(struct net_device * dev)
3705 conf_reg_t reg = { 0, CS_READ, CISREG_COR, 0 };
3706 struct pcmcia_device * link = ((net_local *)netdev_priv(dev))->link;
3708 #ifdef DEBUG_CONFIG_TRACE
3709 printk(KERN_DEBUG "%s: ->wv_pcmcia_reset()\n", dev->name);
3712 i = pcmcia_access_configuration_register(link, ®);
3715 cs_error(link, AccessConfigurationRegister, i);
3719 #ifdef DEBUG_CONFIG_INFO
3720 printk(KERN_DEBUG "%s: wavelan_pcmcia_reset(): Config reg is 0x%x\n",
3721 dev->name, (u_int) reg.Value);
3724 reg.Action = CS_WRITE;
3725 reg.Value = reg.Value | COR_SW_RESET;
3726 i = pcmcia_access_configuration_register(link, ®);
3729 cs_error(link, AccessConfigurationRegister, i);
3733 reg.Action = CS_WRITE;
3734 reg.Value = COR_LEVEL_IRQ | COR_CONFIG;
3735 i = pcmcia_access_configuration_register(link, ®);
3738 cs_error(link, AccessConfigurationRegister, i);
3742 #ifdef DEBUG_CONFIG_TRACE
3743 printk(KERN_DEBUG "%s: <-wv_pcmcia_reset()\n", dev->name);
3748 /*------------------------------------------------------------------*/
3750 * wavelan_hw_config() is called after a CARD_INSERTION event is
3751 * received, to configure the wavelan hardware.
3752 * Note that the reception will be enabled in wavelan->open(), so the
3753 * device is configured but idle...
3754 * Performs the following actions:
3755 * 1. A pcmcia software reset (using wv_pcmcia_reset())
3756 * 2. A power reset (reset DMA)
3757 * 3. Reset the LAN controller
3758 * 4. Initialize the radio modem (using wv_mmc_init)
3759 * 5. Configure LAN controller (using wv_82593_config)
3760 * 6. Perform a diagnostic on the LAN controller
3761 * (called by wavelan_event() & wv_hw_reset())
3764 wv_hw_config(struct net_device * dev)
3766 net_local * lp = netdev_priv(dev);
3767 unsigned int base = dev->base_addr;
3768 unsigned long flags;
3771 #ifdef DEBUG_CONFIG_TRACE
3772 printk(KERN_DEBUG "%s: ->wv_hw_config()\n", dev->name);
3775 /* compile-time check the sizes of structures */
3776 BUILD_BUG_ON(sizeof(psa_t) != PSA_SIZE);
3777 BUILD_BUG_ON(sizeof(mmw_t) != MMW_SIZE);
3778 BUILD_BUG_ON(sizeof(mmr_t) != MMR_SIZE);
3780 /* Reset the pcmcia interface */
3781 if(wv_pcmcia_reset(dev) == FALSE)
3784 /* Disable interrupts */
3785 spin_lock_irqsave(&lp->spinlock, flags);
3787 /* Disguised goto ;-) */
3790 /* Power UP the module + reset the modem + reset host adapter
3791 * (in fact, reset DMA channels) */
3792 hacr_write_slow(base, HACR_RESET);
3793 hacr_write(base, HACR_DEFAULT);
3795 /* Check if the module has been powered up... */
3796 if(hasr_read(base) & HASR_NO_CLK)
3798 #ifdef DEBUG_CONFIG_ERRORS
3799 printk(KERN_WARNING "%s: wv_hw_config(): modem not connected or not a wavelan card\n",
3805 /* initialize the modem */
3806 if(wv_mmc_init(dev) == FALSE)
3808 #ifdef DEBUG_CONFIG_ERRORS
3809 printk(KERN_WARNING "%s: wv_hw_config(): Can't configure the modem\n",
3815 /* reset the LAN controller (i82593) */
3816 outb(OP0_RESET, LCCR(base));
3817 mdelay(1); /* A bit crude ! */
3819 /* Initialize the LAN controller */
3820 if(wv_82593_config(dev) == FALSE)
3822 #ifdef DEBUG_CONFIG_ERRORS
3823 printk(KERN_INFO "%s: wv_hw_config(): i82593 init failed\n",
3830 if(wv_diag(dev) == FALSE)
3832 #ifdef DEBUG_CONFIG_ERRORS
3833 printk(KERN_INFO "%s: wv_hw_config(): i82593 diagnostic failed\n",
3840 * insert code for loopback test here
3843 /* The device is now configured */
3849 /* Re-enable interrupts */
3850 spin_unlock_irqrestore(&lp->spinlock, flags);
3852 #ifdef DEBUG_CONFIG_TRACE
3853 printk(KERN_DEBUG "%s: <-wv_hw_config()\n", dev->name);
3858 /*------------------------------------------------------------------*/
3860 * Totally reset the wavelan and restart it.
3861 * Performs the following actions:
3862 * 1. Call wv_hw_config()
3863 * 2. Start the LAN controller's receive unit
3864 * (called by wavelan_event(), wavelan_watchdog() and wavelan_open())
3867 wv_hw_reset(struct net_device * dev)
3869 net_local * lp = netdev_priv(dev);
3871 #ifdef DEBUG_CONFIG_TRACE
3872 printk(KERN_DEBUG "%s: ->wv_hw_reset()\n", dev->name);
3878 /* Call wv_hw_config() for most of the reset & init stuff */
3879 if(wv_hw_config(dev) == FALSE)
3882 /* start receive unit */
3885 #ifdef DEBUG_CONFIG_TRACE
3886 printk(KERN_DEBUG "%s: <-wv_hw_reset()\n", dev->name);
3890 /*------------------------------------------------------------------*/
3892 * wv_pcmcia_config() is called after a CARD_INSERTION event is
3893 * received, to configure the PCMCIA socket, and to make the ethernet
3894 * device available to the system.
3895 * (called by wavelan_event())
3898 wv_pcmcia_config(struct pcmcia_device * link)
3900 struct net_device * dev = (struct net_device *) link->priv;
3904 net_local * lp = netdev_priv(dev);
3907 #ifdef DEBUG_CONFIG_TRACE
3908 printk(KERN_DEBUG "->wv_pcmcia_config(0x%p)\n", link);
3913 i = pcmcia_request_io(link, &link->io);
3916 cs_error(link, RequestIO, i);
3921 * Now allocate an interrupt line. Note that this does not
3922 * actually assign a handler to the interrupt.
3924 i = pcmcia_request_irq(link, &link->irq);
3927 cs_error(link, RequestIRQ, i);
3932 * This actually configures the PCMCIA socket -- setting up
3933 * the I/O windows and the interrupt mapping.
3935 link->conf.ConfigIndex = 1;
3936 i = pcmcia_request_configuration(link, &link->conf);
3939 cs_error(link, RequestConfiguration, i);
3944 * Allocate a small memory window. Note that the struct pcmcia_device
3945 * structure provides space for one window handle -- if your
3946 * device needs several windows, you'll need to keep track of
3947 * the handles in your private data structure, link->priv.
3949 req.Attributes = WIN_DATA_WIDTH_8|WIN_MEMORY_TYPE_AM|WIN_ENABLE;
3950 req.Base = req.Size = 0;
3951 req.AccessSpeed = mem_speed;
3952 i = pcmcia_request_window(&link, &req, &link->win);
3955 cs_error(link, RequestWindow, i);
3959 lp->mem = ioremap(req.Base, req.Size);
3960 dev->mem_start = (u_long)lp->mem;
3961 dev->mem_end = dev->mem_start + req.Size;
3963 mem.CardOffset = 0; mem.Page = 0;
3964 i = pcmcia_map_mem_page(link->win, &mem);
3967 cs_error(link, MapMemPage, i);
3971 /* Feed device with this info... */
3972 dev->irq = link->irq.AssignedIRQ;
3973 dev->base_addr = link->io.BasePort1;
3974 netif_start_queue(dev);
3976 #ifdef DEBUG_CONFIG_INFO
3977 printk(KERN_DEBUG "wv_pcmcia_config: MEMSTART %p IRQ %d IOPORT 0x%x\n",
3978 lp->mem, dev->irq, (u_int) dev->base_addr);
3981 SET_NETDEV_DEV(dev, &handle_to_dev(link));
3982 i = register_netdev(dev);
3985 #ifdef DEBUG_CONFIG_ERRORS
3986 printk(KERN_INFO "wv_pcmcia_config(): register_netdev() failed\n");
3991 while(0); /* Humm... Disguised goto !!! */
3993 /* If any step failed, release any partially configured state */
3996 wv_pcmcia_release(link);
4000 strcpy(((net_local *) netdev_priv(dev))->node.dev_name, dev->name);
4001 link->dev_node = &((net_local *) netdev_priv(dev))->node;
4003 #ifdef DEBUG_CONFIG_TRACE
4004 printk(KERN_DEBUG "<-wv_pcmcia_config()\n");
4009 /*------------------------------------------------------------------*/
4011 * After a card is removed, wv_pcmcia_release() will unregister the net
4012 * device, and release the PCMCIA configuration. If the device is
4013 * still open, this will be postponed until it is closed.
4016 wv_pcmcia_release(struct pcmcia_device *link)
4018 struct net_device * dev = (struct net_device *) link->priv;
4019 net_local * lp = netdev_priv(dev);
4021 #ifdef DEBUG_CONFIG_TRACE
4022 printk(KERN_DEBUG "%s: -> wv_pcmcia_release(0x%p)\n", dev->name, link);
4026 pcmcia_disable_device(link);
4028 #ifdef DEBUG_CONFIG_TRACE
4029 printk(KERN_DEBUG "%s: <- wv_pcmcia_release()\n", dev->name);
4033 /************************ INTERRUPT HANDLING ************************/
4036 * This function is the interrupt handler for the WaveLAN card. This
4037 * routine will be called whenever:
4038 * 1. A packet is received.
4039 * 2. A packet has successfully been transferred and the unit is
4040 * ready to transmit another packet.
4041 * 3. A command has completed execution.
4044 wavelan_interrupt(int irq,
4047 struct net_device * dev = dev_id;
4053 #ifdef DEBUG_INTERRUPT_TRACE
4054 printk(KERN_DEBUG "%s: ->wavelan_interrupt()\n", dev->name);
4057 lp = netdev_priv(dev);
4058 base = dev->base_addr;
4060 #ifdef DEBUG_INTERRUPT_INFO
4061 /* Check state of our spinlock (it should be cleared) */
4062 if(spin_is_locked(&lp->spinlock))
4064 "%s: wavelan_interrupt(): spinlock is already locked !!!\n",
4068 /* Prevent reentrancy. We need to do that because we may have
4069 * multiple interrupt handler running concurently.
4070 * It is safe because interrupts are disabled before aquiring
4072 spin_lock(&lp->spinlock);
4074 /* Treat all pending interrupts */
4077 /* ---------------- INTERRUPT CHECKING ---------------- */
4079 * Look for the interrupt and verify the validity
4081 outb(CR0_STATUS_0 | OP0_NOP, LCCR(base));
4082 status0 = inb(LCSR(base));
4084 #ifdef DEBUG_INTERRUPT_INFO
4085 printk(KERN_DEBUG "status0 0x%x [%s => 0x%x]", status0,
4086 (status0&SR0_INTERRUPT)?"int":"no int",status0&~SR0_INTERRUPT);
4087 if(status0&SR0_INTERRUPT)
4089 printk(" [%s => %d]\n", (status0 & SR0_CHNL) ? "chnl" :
4090 ((status0 & SR0_EXECUTION) ? "cmd" :
4091 ((status0 & SR0_RECEPTION) ? "recv" : "unknown")),
4092 (status0 & SR0_EVENT_MASK));
4098 /* Return if no actual interrupt from i82593 (normal exit) */
4099 if(!(status0 & SR0_INTERRUPT))
4102 /* If interrupt is both Rx and Tx or none...
4103 * This code in fact is there to catch the spurious interrupt
4104 * when you remove the wavelan pcmcia card from the socket */
4105 if(((status0 & SR0_BOTH_RX_TX) == SR0_BOTH_RX_TX) ||
4106 ((status0 & SR0_BOTH_RX_TX) == 0x0))
4108 #ifdef DEBUG_INTERRUPT_INFO
4109 printk(KERN_INFO "%s: wv_interrupt(): bogus interrupt (or from dead card) : %X\n",
4110 dev->name, status0);
4112 /* Acknowledge the interrupt */
4113 outb(CR0_INT_ACK | OP0_NOP, LCCR(base));
4117 /* ----------------- RECEIVING PACKET ----------------- */
4119 * When the wavelan signal the reception of a new packet,
4120 * we call wv_packet_rcv() to copy if from the buffer and
4123 if(status0 & SR0_RECEPTION)
4125 #ifdef DEBUG_INTERRUPT_INFO
4126 printk(KERN_DEBUG "%s: wv_interrupt(): receive\n", dev->name);
4129 if((status0 & SR0_EVENT_MASK) == SR0_STOP_REG_HIT)
4131 #ifdef DEBUG_INTERRUPT_ERROR
4132 printk(KERN_INFO "%s: wv_interrupt(): receive buffer overflow\n",
4135 lp->stats.rx_over_errors++;
4136 lp->overrunning = 1;
4139 /* Get the packet */
4141 lp->overrunning = 0;
4143 /* Acknowledge the interrupt */
4144 outb(CR0_INT_ACK | OP0_NOP, LCCR(base));
4148 /* ---------------- COMMAND COMPLETION ---------------- */
4150 * Interrupts issued when the i82593 has completed a command.
4151 * Most likely : transmission done
4154 /* If a transmission has been done */
4155 if((status0 & SR0_EVENT_MASK) == SR0_TRANSMIT_DONE ||
4156 (status0 & SR0_EVENT_MASK) == SR0_RETRANSMIT_DONE ||
4157 (status0 & SR0_EVENT_MASK) == SR0_TRANSMIT_NO_CRC_DONE)
4159 #ifdef DEBUG_TX_ERROR
4160 if((status0 & SR0_EVENT_MASK) == SR0_TRANSMIT_NO_CRC_DONE)
4161 printk(KERN_INFO "%s: wv_interrupt(): packet transmitted without CRC.\n",
4165 /* Get transmission status */
4166 tx_status = inb(LCSR(base));
4167 tx_status |= (inb(LCSR(base)) << 8);
4168 #ifdef DEBUG_INTERRUPT_INFO
4169 printk(KERN_DEBUG "%s: wv_interrupt(): transmission done\n",
4174 rcv_bytes = inb(LCSR(base));
4175 rcv_bytes |= (inb(LCSR(base)) << 8);
4176 status3 = inb(LCSR(base));
4177 printk(KERN_DEBUG "tx_status 0x%02x rcv_bytes 0x%02x status3 0x%x\n",
4178 tx_status, rcv_bytes, (u_int) status3);
4181 /* Check for possible errors */
4182 if((tx_status & TX_OK) != TX_OK)
4184 lp->stats.tx_errors++;
4186 if(tx_status & TX_FRTL)
4188 #ifdef DEBUG_TX_ERROR
4189 printk(KERN_INFO "%s: wv_interrupt(): frame too long\n",
4193 if(tx_status & TX_UND_RUN)
4195 #ifdef DEBUG_TX_FAIL
4196 printk(KERN_DEBUG "%s: wv_interrupt(): DMA underrun\n",
4199 lp->stats.tx_aborted_errors++;
4201 if(tx_status & TX_LOST_CTS)
4203 #ifdef DEBUG_TX_FAIL
4204 printk(KERN_DEBUG "%s: wv_interrupt(): no CTS\n", dev->name);
4206 lp->stats.tx_carrier_errors++;
4208 if(tx_status & TX_LOST_CRS)
4210 #ifdef DEBUG_TX_FAIL
4211 printk(KERN_DEBUG "%s: wv_interrupt(): no carrier\n",
4214 lp->stats.tx_carrier_errors++;
4216 if(tx_status & TX_HRT_BEAT)
4218 #ifdef DEBUG_TX_FAIL
4219 printk(KERN_DEBUG "%s: wv_interrupt(): heart beat\n", dev->name);
4221 lp->stats.tx_heartbeat_errors++;
4223 if(tx_status & TX_DEFER)
4225 #ifdef DEBUG_TX_FAIL
4226 printk(KERN_DEBUG "%s: wv_interrupt(): channel jammed\n",
4230 /* Ignore late collisions since they're more likely to happen
4231 * here (the WaveLAN design prevents the LAN controller from
4232 * receiving while it is transmitting). We take action only when
4233 * the maximum retransmit attempts is exceeded.
4235 if(tx_status & TX_COLL)
4237 if(tx_status & TX_MAX_COL)
4239 #ifdef DEBUG_TX_FAIL
4240 printk(KERN_DEBUG "%s: wv_interrupt(): channel congestion\n",
4243 if(!(tx_status & TX_NCOL_MASK))
4245 lp->stats.collisions += 0x10;
4249 } /* if(!(tx_status & TX_OK)) */
4251 lp->stats.collisions += (tx_status & TX_NCOL_MASK);
4252 lp->stats.tx_packets++;
4254 netif_wake_queue(dev);
4255 outb(CR0_INT_ACK | OP0_NOP, LCCR(base)); /* Acknowledge the interrupt */
4257 else /* if interrupt = transmit done or retransmit done */
4259 #ifdef DEBUG_INTERRUPT_ERROR
4260 printk(KERN_INFO "wavelan_cs: unknown interrupt, status0 = %02x\n",
4263 outb(CR0_INT_ACK | OP0_NOP, LCCR(base)); /* Acknowledge the interrupt */
4267 spin_unlock(&lp->spinlock);
4269 #ifdef DEBUG_INTERRUPT_TRACE
4270 printk(KERN_DEBUG "%s: <-wavelan_interrupt()\n", dev->name);
4273 /* We always return IRQ_HANDLED, because we will receive empty
4274 * interrupts under normal operations. Anyway, it doesn't matter
4275 * as we are dealing with an ISA interrupt that can't be shared.
4277 * Explanation : under heavy receive, the following happens :
4278 * ->wavelan_interrupt()
4279 * (status0 & SR0_INTERRUPT) != 0
4281 * (status0 & SR0_INTERRUPT) != 0
4283 * (status0 & SR0_INTERRUPT) == 0 // i.e. no more event
4284 * <-wavelan_interrupt()
4285 * ->wavelan_interrupt()
4286 * (status0 & SR0_INTERRUPT) == 0 // i.e. empty interrupt
4287 * <-wavelan_interrupt()
4290 } /* wv_interrupt */
4292 /*------------------------------------------------------------------*/
4294 * Watchdog: when we start a transmission, a timer is set for us in the
4295 * kernel. If the transmission completes, this timer is disabled. If
4296 * the timer expires, we are called and we try to unlock the hardware.
4298 * Note : This watchdog is move clever than the one in the ISA driver,
4299 * because it try to abort the current command before reseting
4301 * On the other hand, it's a bit simpler, because we don't have to
4302 * deal with the multiple Tx buffers...
4305 wavelan_watchdog(struct net_device * dev)
4307 net_local * lp = netdev_priv(dev);
4308 unsigned int base = dev->base_addr;
4309 unsigned long flags;
4310 int aborted = FALSE;
4312 #ifdef DEBUG_INTERRUPT_TRACE
4313 printk(KERN_DEBUG "%s: ->wavelan_watchdog()\n", dev->name);
4316 #ifdef DEBUG_INTERRUPT_ERROR
4317 printk(KERN_INFO "%s: wavelan_watchdog: watchdog timer expired\n",
4321 spin_lock_irqsave(&lp->spinlock, flags);
4323 /* Ask to abort the current command */
4324 outb(OP0_ABORT, LCCR(base));
4326 /* Wait for the end of the command (a bit hackish) */
4327 if(wv_82593_cmd(dev, "wavelan_watchdog(): abort",
4328 OP0_NOP | CR0_STATUS_3, SR0_EXECUTION_ABORTED))
4331 /* Release spinlock here so that wv_hw_reset() can grab it */
4332 spin_unlock_irqrestore(&lp->spinlock, flags);
4334 /* Check if we were successful in aborting it */
4337 /* It seem that it wasn't enough */
4338 #ifdef DEBUG_INTERRUPT_ERROR
4339 printk(KERN_INFO "%s: wavelan_watchdog: abort failed, trying reset\n",
4345 #ifdef DEBUG_PSA_SHOW
4348 psa_read(dev, 0, (unsigned char *) &psa, sizeof(psa));
4352 #ifdef DEBUG_MMC_SHOW
4355 #ifdef DEBUG_I82593_SHOW
4359 /* We are no more waiting for something... */
4360 netif_wake_queue(dev);
4362 #ifdef DEBUG_INTERRUPT_TRACE
4363 printk(KERN_DEBUG "%s: <-wavelan_watchdog()\n", dev->name);
4367 /********************* CONFIGURATION CALLBACKS *********************/
4369 * Here are the functions called by the pcmcia package (cardmgr) and
4370 * linux networking (NET3) for initialization, configuration and
4371 * deinstallations of the Wavelan Pcmcia Hardware.
4374 /*------------------------------------------------------------------*/
4376 * Configure and start up the WaveLAN PCMCIA adaptor.
4377 * Called by NET3 when it "open" the device.
4380 wavelan_open(struct net_device * dev)
4382 net_local * lp = netdev_priv(dev);
4383 struct pcmcia_device * link = lp->link;
4384 unsigned int base = dev->base_addr;
4386 #ifdef DEBUG_CALLBACK_TRACE
4387 printk(KERN_DEBUG "%s: ->wavelan_open(dev=0x%x)\n", dev->name,
4388 (unsigned int) dev);
4391 /* Check if the modem is powered up (wavelan_close() power it down */
4392 if(hasr_read(base) & HASR_NO_CLK)
4394 /* Power up (power up time is 250us) */
4395 hacr_write(base, HACR_DEFAULT);
4397 /* Check if the module has been powered up... */
4398 if(hasr_read(base) & HASR_NO_CLK)
4400 #ifdef DEBUG_CONFIG_ERRORS
4401 printk(KERN_WARNING "%s: wavelan_open(): modem not connected\n",
4408 /* Start reception and declare the driver ready */
4411 if(!wv_ru_start(dev))
4412 wv_hw_reset(dev); /* If problem : reset */
4413 netif_start_queue(dev);
4415 /* Mark the device as used */
4418 #ifdef WAVELAN_ROAMING
4421 #endif /* WAVELAN_ROAMING */
4423 #ifdef DEBUG_CALLBACK_TRACE
4424 printk(KERN_DEBUG "%s: <-wavelan_open()\n", dev->name);
4429 /*------------------------------------------------------------------*/
4431 * Shutdown the WaveLAN PCMCIA adaptor.
4432 * Called by NET3 when it "close" the device.
4435 wavelan_close(struct net_device * dev)
4437 struct pcmcia_device * link = ((net_local *)netdev_priv(dev))->link;
4438 unsigned int base = dev->base_addr;
4440 #ifdef DEBUG_CALLBACK_TRACE
4441 printk(KERN_DEBUG "%s: ->wavelan_close(dev=0x%x)\n", dev->name,
4442 (unsigned int) dev);
4445 /* If the device isn't open, then nothing to do */
4448 #ifdef DEBUG_CONFIG_INFO
4449 printk(KERN_DEBUG "%s: wavelan_close(): device not open\n", dev->name);
4454 #ifdef WAVELAN_ROAMING
4455 /* Cleanup of roaming stuff... */
4457 wv_roam_cleanup(dev);
4458 #endif /* WAVELAN_ROAMING */
4462 /* If the card is still present */
4463 if(netif_running(dev))
4465 netif_stop_queue(dev);
4467 /* Stop receiving new messages and wait end of transmission */
4470 /* Power down the module */
4471 hacr_write(base, HACR_DEFAULT & (~HACR_PWR_STAT));
4474 #ifdef DEBUG_CALLBACK_TRACE
4475 printk(KERN_DEBUG "%s: <-wavelan_close()\n", dev->name);
4480 /*------------------------------------------------------------------*/
4482 * wavelan_attach() creates an "instance" of the driver, allocating
4483 * local data structures for one device (one interface). The device
4484 * is registered with Card Services.
4486 * The dev_link structure is initialized, but we don't actually
4487 * configure the card at this point -- we wait until we receive a
4488 * card insertion event.
4491 wavelan_probe(struct pcmcia_device *p_dev)
4493 struct net_device * dev; /* Interface generic data */
4494 net_local * lp; /* Interface specific data */
4497 #ifdef DEBUG_CALLBACK_TRACE
4498 printk(KERN_DEBUG "-> wavelan_attach()\n");
4501 /* The io structure describes IO port mapping */
4502 p_dev->io.NumPorts1 = 8;
4503 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
4504 p_dev->io.IOAddrLines = 3;
4506 /* Interrupt setup */
4507 p_dev->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT;
4508 p_dev->irq.IRQInfo1 = IRQ_LEVEL_ID;
4509 p_dev->irq.Handler = wavelan_interrupt;
4511 /* General socket configuration */
4512 p_dev->conf.Attributes = CONF_ENABLE_IRQ;
4513 p_dev->conf.IntType = INT_MEMORY_AND_IO;
4515 /* Allocate the generic data structure */
4516 dev = alloc_etherdev(sizeof(net_local));
4520 p_dev->priv = p_dev->irq.Instance = dev;
4522 lp = netdev_priv(dev);
4524 /* Init specific data */
4526 lp->reconfig_82593 = FALSE;
4528 /* Multicast stuff */
4529 lp->promiscuous = 0;
4530 lp->allmulticast = 0;
4534 spin_lock_init(&lp->spinlock);
4539 /* wavelan NET3 callbacks */
4540 dev->open = &wavelan_open;
4541 dev->stop = &wavelan_close;
4542 dev->hard_start_xmit = &wavelan_packet_xmit;
4543 dev->get_stats = &wavelan_get_stats;
4544 dev->set_multicast_list = &wavelan_set_multicast_list;
4545 #ifdef SET_MAC_ADDRESS
4546 dev->set_mac_address = &wavelan_set_mac_address;
4547 #endif /* SET_MAC_ADDRESS */
4549 /* Set the watchdog timer */
4550 dev->tx_timeout = &wavelan_watchdog;
4551 dev->watchdog_timeo = WATCHDOG_JIFFIES;
4552 SET_ETHTOOL_OPS(dev, &ops);
4554 dev->wireless_handlers = &wavelan_handler_def;
4555 lp->wireless_data.spy_data = &lp->spy_data;
4556 dev->wireless_data = &lp->wireless_data;
4558 /* Other specific data */
4559 dev->mtu = WAVELAN_MTU;
4561 ret = wv_pcmcia_config(p_dev);
4565 ret = wv_hw_config(dev);
4568 pcmcia_disable_device(p_dev);
4574 #ifdef DEBUG_CALLBACK_TRACE
4575 printk(KERN_DEBUG "<- wavelan_attach()\n");
4581 /*------------------------------------------------------------------*/
4583 * This deletes a driver "instance". The device is de-registered with
4584 * Card Services. If it has been released, all local data structures
4585 * are freed. Otherwise, the structures will be freed when the device
4589 wavelan_detach(struct pcmcia_device *link)
4591 #ifdef DEBUG_CALLBACK_TRACE
4592 printk(KERN_DEBUG "-> wavelan_detach(0x%p)\n", link);
4595 /* Some others haven't done their job : give them another chance */
4596 wv_pcmcia_release(link);
4601 struct net_device * dev = (struct net_device *) link->priv;
4603 /* Remove ourselves from the kernel list of ethernet devices */
4604 /* Warning : can't be called from interrupt, timer or wavelan_close() */
4606 unregister_netdev(dev);
4607 link->dev_node = NULL;
4608 ((net_local *)netdev_priv(dev))->link = NULL;
4609 ((net_local *)netdev_priv(dev))->dev = NULL;
4613 #ifdef DEBUG_CALLBACK_TRACE
4614 printk(KERN_DEBUG "<- wavelan_detach()\n");
4618 static int wavelan_suspend(struct pcmcia_device *link)
4620 struct net_device * dev = (struct net_device *) link->priv;
4622 /* NB: wavelan_close will be called, but too late, so we are
4623 * obliged to close nicely the wavelan here. David, could you
4624 * close the device before suspending them ? And, by the way,
4625 * could you, on resume, add a "route add -net ..." after the
4626 * ifconfig up ? Thanks... */
4628 /* Stop receiving new messages and wait end of transmission */
4632 netif_device_detach(dev);
4634 /* Power down the module */
4635 hacr_write(dev->base_addr, HACR_DEFAULT & (~HACR_PWR_STAT));
4640 static int wavelan_resume(struct pcmcia_device *link)
4642 struct net_device * dev = (struct net_device *) link->priv;
4646 netif_device_attach(dev);
4653 static struct pcmcia_device_id wavelan_ids[] = {
4654 PCMCIA_DEVICE_PROD_ID12("AT&T","WaveLAN/PCMCIA", 0xe7c5affd, 0x1bc50975),
4655 PCMCIA_DEVICE_PROD_ID12("Digital", "RoamAbout/DS", 0x9999ab35, 0x00d05e06),
4656 PCMCIA_DEVICE_PROD_ID12("Lucent Technologies", "WaveLAN/PCMCIA", 0x23eb9949, 0x1bc50975),
4657 PCMCIA_DEVICE_PROD_ID12("NCR", "WaveLAN/PCMCIA", 0x24358cd4, 0x1bc50975),
4660 MODULE_DEVICE_TABLE(pcmcia, wavelan_ids);
4662 static struct pcmcia_driver wavelan_driver = {
4663 .owner = THIS_MODULE,
4665 .name = "wavelan_cs",
4667 .probe = wavelan_probe,
4668 .remove = wavelan_detach,
4669 .id_table = wavelan_ids,
4670 .suspend = wavelan_suspend,
4671 .resume = wavelan_resume,
4675 init_wavelan_cs(void)
4677 return pcmcia_register_driver(&wavelan_driver);
4681 exit_wavelan_cs(void)
4683 pcmcia_unregister_driver(&wavelan_driver);
4686 module_init(init_wavelan_cs);
4687 module_exit(exit_wavelan_cs);