netwave_cs.c
来自「linux 内核源代码」· C语言 代码 · 共 1,426 行 · 第 1/3 页
C
1,426 行
/********************************************************************* * * Filename: netwave_cs.c * Version: 0.4.1 * Description: Netwave AirSurfer Wireless LAN PC Card driver * Status: Experimental. * Authors: John Markus Bjørndalen <johnm@cs.uit.no> * Dag Brattli <dagb@cs.uit.no> * David Hinds <dahinds@users.sourceforge.net> * Created at: A long time ago! * Modified at: Mon Nov 10 11:54:37 1997 * Modified by: Dag Brattli <dagb@cs.uit.no> * * Copyright (c) 1997 University of Tromsø, Norway * * Revision History: * * 08-Nov-97 15:14:47 John Markus Bjørndalen <johnm@cs.uit.no> * - Fixed some bugs in netwave_rx and cleaned it up a bit. * (One of the bugs would have destroyed packets when receiving * multiple packets per interrupt). * - Cleaned up parts of newave_hw_xmit. * - A few general cleanups. * 24-Oct-97 13:17:36 Dag Brattli <dagb@cs.uit.no> * - Fixed netwave_rx receive function (got updated docs) * Others: * - Changed name from xircnw to netwave, take a look at * http://www.netwave-wireless.com * - Some reorganizing of the code * - Removed possible race condition between interrupt handler and transmit * function * - Started to add wireless extensions, but still needs some coding * - Added watchdog for better handling of transmission timeouts * (hopefully this works better) ********************************************************************//* To have statistics (just packets sent) define this */#undef NETWAVE_STATS#include <linux/module.h>#include <linux/kernel.h>#include <linux/init.h>#include <linux/types.h>#include <linux/fcntl.h>#include <linux/interrupt.h>#include <linux/ptrace.h>#include <linux/ioport.h>#include <linux/in.h>#include <linux/slab.h>#include <linux/string.h>#include <linux/timer.h>#include <linux/errno.h>#include <linux/netdevice.h>#include <linux/etherdevice.h>#include <linux/skbuff.h>#include <linux/bitops.h>#include <linux/wireless.h>#include <net/iw_handler.h>#include <pcmcia/cs_types.h>#include <pcmcia/cs.h>#include <pcmcia/cistpl.h>#include <pcmcia/cisreg.h>#include <pcmcia/ds.h>#include <pcmcia/mem_op.h>#include <asm/system.h>#include <asm/io.h>#include <asm/dma.h>#define NETWAVE_REGOFF 0x8000/* The Netwave IO registers, offsets to iobase */#define NETWAVE_REG_COR 0x0#define NETWAVE_REG_CCSR 0x2#define NETWAVE_REG_ASR 0x4#define NETWAVE_REG_IMR 0xa#define NETWAVE_REG_PMR 0xc#define NETWAVE_REG_IOLOW 0x6#define NETWAVE_REG_IOHI 0x7#define NETWAVE_REG_IOCONTROL 0x8#define NETWAVE_REG_DATA 0xf/* The Netwave Extended IO registers, offsets to RamBase */#define NETWAVE_EREG_ASCC 0x114#define NETWAVE_EREG_RSER 0x120#define NETWAVE_EREG_RSERW 0x124#define NETWAVE_EREG_TSER 0x130#define NETWAVE_EREG_TSERW 0x134#define NETWAVE_EREG_CB 0x100#define NETWAVE_EREG_SPCQ 0x154#define NETWAVE_EREG_SPU 0x155#define NETWAVE_EREG_LIF 0x14e#define NETWAVE_EREG_ISPLQ 0x156#define NETWAVE_EREG_HHC 0x158#define NETWAVE_EREG_NI 0x16e#define NETWAVE_EREG_MHS 0x16b#define NETWAVE_EREG_TDP 0x140#define NETWAVE_EREG_RDP 0x150#define NETWAVE_EREG_PA 0x160#define NETWAVE_EREG_EC 0x180#define NETWAVE_EREG_CRBP 0x17a#define NETWAVE_EREG_ARW 0x166/* * Commands used in the extended command buffer * NETWAVE_EREG_CB (0x100-0x10F) */#define NETWAVE_CMD_NOP 0x00#define NETWAVE_CMD_SRC 0x01#define NETWAVE_CMD_STC 0x02#define NETWAVE_CMD_AMA 0x03#define NETWAVE_CMD_DMA 0x04#define NETWAVE_CMD_SAMA 0x05#define NETWAVE_CMD_ER 0x06#define NETWAVE_CMD_DR 0x07#define NETWAVE_CMD_TL 0x08#define NETWAVE_CMD_SRP 0x09#define NETWAVE_CMD_SSK 0x0a#define NETWAVE_CMD_SMD 0x0b#define NETWAVE_CMD_SAPD 0x0c#define NETWAVE_CMD_SSS 0x11/* End of Command marker */#define NETWAVE_CMD_EOC 0x00/* ASR register bits */#define NETWAVE_ASR_RXRDY 0x80#define NETWAVE_ASR_TXBA 0x01#define TX_TIMEOUT ((32*HZ)/100)static const unsigned int imrConfRFU1 = 0x10; /* RFU interrupt mask, keep high */static const unsigned int imrConfIENA = 0x02; /* Interrupt enable */static const unsigned int corConfIENA = 0x01; /* Interrupt enable */static const unsigned int corConfLVLREQ = 0x40; /* Keep high */static const unsigned int rxConfRxEna = 0x80; /* Receive Enable */static const unsigned int rxConfMAC = 0x20; /* MAC host receive mode*/ static const unsigned int rxConfPro = 0x10; /* Promiscuous */static const unsigned int rxConfAMP = 0x08; /* Accept Multicast Packets */static const unsigned int rxConfBcast = 0x04; /* Accept Broadcast Packets */static const unsigned int txConfTxEna = 0x80; /* Transmit Enable */static const unsigned int txConfMAC = 0x20; /* Host sends MAC mode */static const unsigned int txConfEUD = 0x10; /* Enable Uni-Data packets */static const unsigned int txConfKey = 0x02; /* Scramble data packets */static const unsigned int txConfLoop = 0x01; /* Loopback mode *//* All the PCMCIA modules use PCMCIA_DEBUG to control debugging. If you do not define PCMCIA_DEBUG at all, all the debug code will be left out. If you compile with PCMCIA_DEBUG=0, the debug code will be present but disabled -- but it can then be enabled for specific modules at load time with a 'pc_debug=#' option to insmod.*/#ifdef PCMCIA_DEBUGstatic int pc_debug = PCMCIA_DEBUG;module_param(pc_debug, int, 0);#define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)static char *version ="netwave_cs.c 0.3.0 Thu Jul 17 14:36:02 1997 (John Markus Bjørndalen)\n";#else#define DEBUG(n, args...)#endif/*====================================================================*//* Parameters that can be set with 'insmod' *//* Choose the domain, default is 0x100 */static u_int domain = 0x100;/* Scramble key, range from 0x0 to 0xffff. * 0x0 is no scrambling. */static u_int scramble_key = 0x0;/* Shared memory speed, in ns. The documentation states that * the card should not be read faster than every 400ns. * This timing should be provided by the HBA. If it becomes a * problem, try setting mem_speed to 400. */static int mem_speed;module_param(domain, int, 0);module_param(scramble_key, int, 0);module_param(mem_speed, int, 0);/*====================================================================*//* PCMCIA (Card Services) related functions */static void netwave_release(struct pcmcia_device *link); /* Card removal */static int netwave_pcmcia_config(struct pcmcia_device *arg); /* Runs after card insertion */static void netwave_detach(struct pcmcia_device *p_dev); /* Destroy instance *//* Hardware configuration */static void netwave_doreset(kio_addr_t iobase, u_char __iomem *ramBase);static void netwave_reset(struct net_device *dev);/* Misc device stuff */static int netwave_open(struct net_device *dev); /* Open the device */static int netwave_close(struct net_device *dev); /* Close the device *//* Packet transmission and Packet reception */static int netwave_start_xmit( struct sk_buff *skb, struct net_device *dev);static int netwave_rx( struct net_device *dev);/* Interrupt routines */static irqreturn_t netwave_interrupt(int irq, void *dev_id);static void netwave_watchdog(struct net_device *);/* Statistics */static void update_stats(struct net_device *dev);static struct net_device_stats *netwave_get_stats(struct net_device *dev);/* Wireless extensions */static struct iw_statistics* netwave_get_wireless_stats(struct net_device *dev);static void set_multicast_list(struct net_device *dev);/* A struct pcmcia_device structure has fields for most things that are needed to keep track of a socket, but there will usually be some device specific information that also needs to be kept track of. The 'priv' pointer in a struct pcmcia_device structure can be used to point to a device-specific private data structure, like this. A driver needs to provide a dev_node_t structure for each device on a card. In some cases, there is only one device per card (for example, ethernet cards, modems). In other cases, there may be many actual or logical devices (SCSI adapters, memory cards with multiple partitions). The dev_node_t structures need to be kept in a linked list starting at the 'dev' field of a struct pcmcia_device structure. We allocate them in the card's private data structure, because they generally can't be allocated dynamically.*/static const struct iw_handler_def netwave_handler_def;#define SIOCGIPSNAP SIOCIWFIRSTPRIV + 1 /* Site Survey Snapshot */#define MAX_ESA 10typedef struct net_addr { u_char addr48[6];} net_addr;struct site_survey { u_short length; u_char struct_revision; u_char roaming_state; u_char sp_existsFlag; u_char sp_link_quality; u_char sp_max_link_quality; u_char linkQualityGoodFairBoundary; u_char linkQualityFairPoorBoundary; u_char sp_utilization; u_char sp_goodness; u_char sp_hotheadcount; u_char roaming_condition; net_addr sp; u_char numAPs; net_addr nearByAccessPoints[MAX_ESA];}; typedef struct netwave_private { struct pcmcia_device *p_dev; spinlock_t spinlock; /* Serialize access to the hardware (SMP) */ dev_node_t node; u_char __iomem *ramBase; int timeoutCounter; int lastExec; struct timer_list watchdog; /* To avoid blocking state */ struct site_survey nss; struct net_device_stats stats; struct iw_statistics iw_stats; /* Wireless stats */} netwave_private;#ifdef NETWAVE_STATSstatic struct net_device_stats *netwave_get_stats(struct net_device *dev);#endif/* * The Netwave card is little-endian, so won't work for big endian * systems. */static inline unsigned short get_uint16(u_char __iomem *staddr) { return readw(staddr); /* Return only 16 bits */}static inline short get_int16(u_char __iomem * staddr){ return readw(staddr);}/* * Wait until the WOC (Write Operation Complete) bit in the * ASR (Adapter Status Register) is asserted. * This should have aborted if it takes too long time. */static inline void wait_WOC(unsigned int iobase){ /* Spin lock */ while ((inb(iobase + NETWAVE_REG_ASR) & 0x8) != 0x8) ; }static void netwave_snapshot(netwave_private *priv, u_char __iomem *ramBase, kio_addr_t iobase) { u_short resultBuffer; /* if time since last snapshot is > 1 sec. (100 jiffies?) then take * new snapshot, else return cached data. This is the recommended rate. */ if ( jiffies - priv->lastExec > 100) { /* Take site survey snapshot */ /*printk( KERN_DEBUG "Taking new snapshot. %ld\n", jiffies - priv->lastExec); */ wait_WOC(iobase); writeb(NETWAVE_CMD_SSS, ramBase + NETWAVE_EREG_CB + 0); writeb(NETWAVE_CMD_EOC, ramBase + NETWAVE_EREG_CB + 1); wait_WOC(iobase); /* Get result and copy to cach */ resultBuffer = readw(ramBase + NETWAVE_EREG_CRBP); copy_from_pc( &priv->nss, ramBase+resultBuffer, sizeof(struct site_survey)); } }/* * Function netwave_get_wireless_stats (dev) * * Wireless extensions statistics * */static struct iw_statistics *netwave_get_wireless_stats(struct net_device *dev){ unsigned long flags; kio_addr_t iobase = dev->base_addr; netwave_private *priv = netdev_priv(dev); u_char __iomem *ramBase = priv->ramBase; struct iw_statistics* wstats; wstats = &priv->iw_stats; spin_lock_irqsave(&priv->spinlock, flags); netwave_snapshot( priv, ramBase, iobase); wstats->status = priv->nss.roaming_state; wstats->qual.qual = readb( ramBase + NETWAVE_EREG_SPCQ); wstats->qual.level = readb( ramBase + NETWAVE_EREG_ISPLQ); wstats->qual.noise = readb( ramBase + NETWAVE_EREG_SPU) & 0x3f; wstats->discard.nwid = 0L; wstats->discard.code = 0L; wstats->discard.misc = 0L; spin_unlock_irqrestore(&priv->spinlock, flags); return &priv->iw_stats;}/* * Function netwave_attach (void) * * Creates an "instance" of the driver, allocating local data * structures for one device. The device is registered with Card * Services. * * The dev_link structure is initialized, but we don't actually * configure the card at this point -- we wait until we receive a * card insertion event. */static int netwave_probe(struct pcmcia_device *link){ struct net_device *dev; netwave_private *priv; DEBUG(0, "netwave_attach()\n"); /* Initialize the struct pcmcia_device structure */ dev = alloc_etherdev(sizeof(netwave_private)); if (!dev) return -ENOMEM; priv = netdev_priv(dev); priv->p_dev = link; link->priv = dev; /* The io structure describes IO port mapping */ link->io.NumPorts1 = 16; link->io.Attributes1 = IO_DATA_PATH_WIDTH_16; /* link->io.NumPorts2 = 16; link->io.Attributes2 = IO_DATA_PATH_WIDTH_16; */ link->io.IOAddrLines = 5; /* Interrupt setup */ link->irq.Attributes = IRQ_TYPE_EXCLUSIVE | IRQ_HANDLE_PRESENT; link->irq.IRQInfo1 = IRQ_LEVEL_ID; link->irq.Handler = &netwave_interrupt; /* General socket configuration */ link->conf.Attributes = CONF_ENABLE_IRQ; link->conf.IntType = INT_MEMORY_AND_IO; link->conf.ConfigIndex = 1; /* Netwave private struct init. link/dev/node already taken care of, * other stuff zero'd - Jean II */ spin_lock_init(&priv->spinlock); /* Netwave specific entries in the device structure */ dev->hard_start_xmit = &netwave_start_xmit; dev->get_stats = &netwave_get_stats; dev->set_multicast_list = &set_multicast_list; /* wireless extensions */ dev->wireless_handlers = (struct iw_handler_def *)&netwave_handler_def; dev->tx_timeout = &netwave_watchdog; dev->watchdog_timeo = TX_TIMEOUT; dev->open = &netwave_open; dev->stop = &netwave_close; link->irq.Instance = dev; return netwave_pcmcia_config( link);} /* netwave_attach *//* * Function netwave_detach (link) * * This deletes a driver "instance". The device is de-registered * with Card Services. If it has been released, all local data * structures are freed. Otherwise, the structures will be freed * when the device is released. */static void netwave_detach(struct pcmcia_device *link){ struct net_device *dev = link->priv; DEBUG(0, "netwave_detach(0x%p)\n", link); netwave_release(link); if (link->dev_node) unregister_netdev(dev); free_netdev(dev);} /* netwave_detach *//* * Wireless Handler : get protocol name */static int netwave_get_name(struct net_device *dev, struct iw_request_info *info, union iwreq_data *wrqu, char *extra){ strcpy(wrqu->name, "Netwave"); return 0;}/* * Wireless Handler : set Network ID */static int netwave_set_nwid(struct net_device *dev, struct iw_request_info *info, union iwreq_data *wrqu, char *extra){ unsigned long flags; kio_addr_t iobase = dev->base_addr; netwave_private *priv = netdev_priv(dev); u_char __iomem *ramBase = priv->ramBase;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?