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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     Aironet driver for 4500 and 4800 series cards
  3.     This code is released under both the GPL version 2 and BSD licenses.
  4.     Either license may be used.  The respective licenses are found at
  5.     the end of this file.
  6.     This code was developed by Benjamin Reed <breed@users.sourceforge.net>
  7.     including portions of which come from the Aironet PC4500
  8.     Developer's Reference Manual and used with permission.  Copyright
  9.     (C) 1999 Benjamin Reed.  All Rights Reserved.  Permission to use
  10.     code in the Developer's manual was granted for this driver by
  11.     Aironet.
  12.     In addition this module was derived from dummy_cs.
  13.     The initial developer of dummy_cs is David A. Hinds
  14.     <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
  15.     are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.    
  16.     
  17. ======================================================================*/
  18. #include <linux/config.h>
  19. #ifdef __IN_PCMCIA_PACKAGE__
  20. #include <pcmcia/k_compat.h>
  21. #endif
  22. #include <linux/init.h>
  23. #include <linux/kernel.h>
  24. #include <linux/module.h>
  25. #include <linux/sched.h>
  26. #include <linux/ptrace.h>
  27. #include <linux/slab.h>
  28. #include <linux/string.h>
  29. #include <linux/timer.h>
  30. #include <linux/netdevice.h>
  31. #include <asm/io.h>
  32. #include <asm/system.h>
  33. #include <pcmcia/version.h>
  34. #include <pcmcia/cs_types.h>
  35. #include <pcmcia/cs.h>
  36. #include <pcmcia/cistpl.h>
  37. #include <pcmcia/cisreg.h>
  38. #include <pcmcia/ds.h>
  39. /*
  40.    All the PCMCIA modules use PCMCIA_DEBUG to control debugging.  If
  41.    you do not define PCMCIA_DEBUG at all, all the debug code will be
  42.    left out.  If you compile with PCMCIA_DEBUG=0, the debug code will
  43.    be present but disabled -- but it can then be enabled for specific
  44.    modules at load time with a 'pc_debug=#' option to insmod.
  45. */
  46. #ifdef PCMCIA_DEBUG
  47. static int pc_debug = PCMCIA_DEBUG;
  48. MODULE_PARM(pc_debug, "i");
  49. static char *version = "$Revision: 1.2 $";
  50. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args);
  51. #else
  52. #define DEBUG(n, args...)
  53. #endif
  54. /*====================================================================*/
  55. /* Parameters that can be set with 'insmod' */
  56. /* The old way: bit map of interrupts to choose from */
  57. /* This means pick from 15, 14, 12, 11, 10, 9, 7, 5, 4, and 3 */
  58. static u_int irq_mask = 0xdeb8;
  59. /* Newer, simpler way of listing specific interrupts */
  60. static int irq_list[4] = { -1 };
  61. MODULE_AUTHOR("Benjamin Reed");
  62. MODULE_DESCRIPTION("Support for Cisco/Aironet 802.11 wireless ethernet 
  63.                    cards.  This is the module that links the PCMCIA card 
  64.    with the airo module.");
  65. MODULE_LICENSE("Dual BSD/GPL");
  66. MODULE_SUPPORTED_DEVICE("Aironet 4500, 4800 and Cisco 340 PCMCIA cards");
  67. MODULE_PARM(irq_mask, "i");
  68. MODULE_PARM(irq_list, "1-4i");
  69. /*====================================================================*/
  70. /*
  71.    The event() function is this driver's Card Services event handler.
  72.    It will be called by Card Services when an appropriate card status
  73.    event is received.  The config() and release() entry points are
  74.    used to configure or release a socket, in response to card
  75.    insertion and ejection events.  They are invoked from the airo_cs
  76.    event handler. 
  77. */
  78. struct net_device *init_airo_card( int, int, int );
  79. void stop_airo_card( struct net_device *, int );
  80. int reset_airo_card( struct net_device * );
  81. static void airo_config(dev_link_t *link);
  82. static void airo_release(u_long arg);
  83. static int airo_event(event_t event, int priority,
  84.        event_callback_args_t *args);
  85. /*
  86.    The attach() and detach() entry points are used to create and destroy
  87.    "instances" of the driver, where each instance represents everything
  88.    needed to manage one actual PCMCIA card.
  89. */
  90. static dev_link_t *airo_attach(void);
  91. static void airo_detach(dev_link_t *);
  92. /*
  93.    You'll also need to prototype all the functions that will actually
  94.    be used to talk to your device.  See 'pcmem_cs' for a good example
  95.    of a fully self-sufficient driver; the other drivers rely more or
  96.    less on other parts of the kernel.
  97. */
  98. /*
  99.    The dev_info variable is the "key" that is used to match up this
  100.    device driver with appropriate cards, through the card configuration
  101.    database.
  102. */
  103. static dev_info_t dev_info = "airo_cs";
  104. /*
  105.    A linked list of "instances" of the  aironet device.  Each actual
  106.    PCMCIA card corresponds to one device instance, and is described
  107.    by one dev_link_t structure (defined in ds.h).
  108.    You may not want to use a linked list for this -- for example, the
  109.    memory card driver uses an array of dev_link_t pointers, where minor
  110.    device numbers are used to derive the corresponding array index.
  111. */
  112. static dev_link_t *dev_list = NULL;
  113. /*
  114.    A dev_link_t structure has fields for most things that are needed
  115.    to keep track of a socket, but there will usually be some device
  116.    specific information that also needs to be kept track of.  The
  117.    'priv' pointer in a dev_link_t structure can be used to point to
  118.    a device-specific private data structure, like this.
  119.    A driver needs to provide a dev_node_t structure for each device
  120.    on a card.  In some cases, there is only one device per card (for
  121.    example, ethernet cards, modems).  In other cases, there may be
  122.    many actual or logical devices (SCSI adapters, memory cards with
  123.    multiple partitions).  The dev_node_t structures need to be kept
  124.    in a linked list starting at the 'dev' field of a dev_link_t
  125.    structure.  We allocate them in the card's private data structure,
  126.    because they generally shouldn't be allocated dynamically.
  127.    In this case, we also provide a flag to indicate if a device is
  128.    "stopped" due to a power management event, or card ejection.  The
  129.    device IO routines can use a flag like this to throttle IO to a
  130.    card that is not ready to accept it.
  131. */
  132.    
  133. typedef struct local_info_t {
  134. dev_node_t node;
  135. struct net_device *eth_dev;
  136. } local_info_t;
  137. /*====================================================================*/
  138. static void cs_error(client_handle_t handle, int func, int ret)
  139. {
  140. error_info_t err = { func, ret };
  141. CardServices(ReportError, handle, &err);
  142. }
  143. /*======================================================================
  144.   
  145.   This bit of code is used to avoid unregistering network devices
  146.   at inappropriate times.  2.2 and later kernels are fairly picky
  147.   about when this can happen.
  148.   
  149.   ======================================================================*/
  150. static void flush_stale_links(void)
  151. {
  152. dev_link_t *link, *next;
  153. for (link = dev_list; link; link = next) {
  154. next = link->next;
  155. if (link->state & DEV_STALE_LINK)
  156. airo_detach(link);
  157. }
  158. }
  159.  
  160. /*======================================================================
  161.   
  162.   airo_attach() creates an "instance" of the driver, allocating
  163.   local data structures for one device.  The device is registered
  164.   with Card Services.
  165.   
  166.   The dev_link structure is initialized, but we don't actually
  167.   configure the card at this point -- we wait until we receive a
  168.   card insertion event.
  169.   
  170.   ======================================================================*/
  171. static dev_link_t *airo_attach(void)
  172. {
  173. client_reg_t client_reg;
  174. dev_link_t *link;
  175. local_info_t *local;
  176. int ret, i;
  177. DEBUG(0, "airo_attach()n");
  178. flush_stale_links();
  179. /* Initialize the dev_link_t structure */
  180. link = kmalloc(sizeof(struct dev_link_t), GFP_KERNEL);
  181. if (!link) {
  182. printk(KERN_ERR "airo_cs: no memory for new devicen");
  183. return NULL;
  184. }
  185. memset(link, 0, sizeof(struct dev_link_t));
  186. link->release.function = &airo_release;
  187. link->release.data = (u_long)link;
  188. /* Interrupt setup */
  189. link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
  190. link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  191. if (irq_list[0] == -1)
  192. link->irq.IRQInfo2 = irq_mask;
  193. else
  194. for (i = 0; i < 4; i++)
  195. link->irq.IRQInfo2 |= 1 << irq_list[i];
  196. link->irq.Handler = NULL;
  197. /*
  198.   General socket configuration defaults can go here.  In this
  199.   client, we assume very little, and rely on the CIS for almost
  200.   everything.  In most clients, many details (i.e., number, sizes,
  201.   and attributes of IO windows) are fixed by the nature of the
  202.   device, and can be hard-wired here.
  203. */
  204. link->conf.Attributes = 0;
  205. link->conf.Vcc = 50;
  206. link->conf.IntType = INT_MEMORY_AND_IO;
  207. /* Allocate space for private device-specific data */
  208. local = kmalloc(sizeof(local_info_t), GFP_KERNEL);
  209. if (!local) {
  210. printk(KERN_ERR "airo_cs: no memory for new devicen");
  211. kfree (link);
  212. return NULL;
  213. }
  214. memset(local, 0, sizeof(local_info_t));
  215. link->priv = local;
  216. /* Register with Card Services */
  217. link->next = dev_list;
  218. dev_list = link;
  219. client_reg.dev_info = &dev_info;
  220. client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  221. client_reg.EventMask =
  222. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  223. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  224. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  225. client_reg.event_handler = &airo_event;
  226. client_reg.Version = 0x0210;
  227. client_reg.event_callback_args.client_data = link;
  228. ret = CardServices(RegisterClient, &link->handle, &client_reg);
  229. if (ret != 0) {
  230. cs_error(link->handle, RegisterClient, ret);
  231. airo_detach(link);
  232. return NULL;
  233. }
  234. return link;
  235. } /* airo_attach */
  236. /*======================================================================
  237.   
  238.   This deletes a driver "instance".  The device is de-registered
  239.   with Card Services.  If it has been released, all local data
  240.   structures are freed.  Otherwise, the structures will be freed
  241.   when the device is released.
  242.   
  243.   ======================================================================*/
  244. static void airo_detach(dev_link_t *link)
  245. {
  246. dev_link_t **linkp;
  247. DEBUG(0, "airo_detach(0x%p)n", link);
  248. /* Locate device structure */
  249. for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  250. if (*linkp == link) break;
  251. if (*linkp == NULL)
  252. return;
  253. del_timer(&link->release);
  254. if ( link->state & DEV_CONFIG ) {
  255. airo_release( (int)link );
  256. if ( link->state & DEV_STALE_CONFIG ) {
  257. link->state |= DEV_STALE_LINK;
  258. return;
  259. }
  260. }
  261. if ( ((local_info_t*)link->priv)->eth_dev ) {
  262. stop_airo_card( ((local_info_t*)link->priv)->eth_dev, 0 );
  263. }
  264. ((local_info_t*)link->priv)->eth_dev = 0;   
  265. /* Break the link with Card Services */
  266. if (link->handle)
  267. CardServices(DeregisterClient, link->handle);
  268. /* Unlink device structure, free pieces */
  269. *linkp = link->next;
  270. if (link->priv) {
  271. kfree(link->priv);
  272. }
  273. kfree(link);
  274. } /* airo_detach */
  275. /*======================================================================
  276.   
  277.   airo_config() is scheduled to run after a CARD_INSERTION event
  278.   is received, to configure the PCMCIA socket, and to make the
  279.   device available to the system.
  280.   
  281.   ======================================================================*/
  282. #define CS_CHECK(fn, args...) 
  283. while ((last_ret=CardServices(last_fn=(fn),args))!=0) goto cs_failed
  284. #define CFG_CHECK(fn, args...) 
  285. if (CardServices(fn, args) != 0) goto next_entry
  286. static void airo_config(dev_link_t *link)
  287. {
  288. client_handle_t handle;
  289. tuple_t tuple;
  290. cisparse_t parse;
  291. local_info_t *dev;
  292. int last_fn, last_ret;
  293. u_char buf[64];
  294. win_req_t req;
  295. memreq_t map;
  296. handle = link->handle;
  297. dev = link->priv;
  298. DEBUG(0, "airo_config(0x%p)n", link);
  299. /*
  300.   This reads the card's CONFIG tuple to find its configuration
  301.   registers.
  302. */
  303. tuple.DesiredTuple = CISTPL_CONFIG;
  304. tuple.Attributes = 0;
  305. tuple.TupleData = buf;
  306. tuple.TupleDataMax = sizeof(buf);
  307. tuple.TupleOffset = 0;
  308. CS_CHECK(GetFirstTuple, handle, &tuple);
  309. CS_CHECK(GetTupleData, handle, &tuple);
  310. CS_CHECK(ParseTuple, handle, &tuple, &parse);
  311. link->conf.ConfigBase = parse.config.base;
  312. link->conf.Present = parse.config.rmask[0];
  313. /* Configure card */
  314. link->state |= DEV_CONFIG;
  315. /*
  316.   In this loop, we scan the CIS for configuration table entries,
  317.   each of which describes a valid card configuration, including
  318.   voltage, IO window, memory window, and interrupt settings.
  319.   
  320.   We make no assumptions about the card to be configured: we use
  321.   just the information available in the CIS.  In an ideal world,
  322.   this would work for any PCMCIA card, but it requires a complete
  323.   and accurate CIS.  In practice, a driver usually "knows" most of
  324.   these things without consulting the CIS, and most client drivers
  325.   will only use the CIS to fill in implementation-defined details.
  326. */
  327. tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  328. CS_CHECK(GetFirstTuple, handle, &tuple);
  329. while (1) {
  330. cistpl_cftable_entry_t dflt = { 0 };
  331. cistpl_cftable_entry_t *cfg = &(parse.cftable_entry);
  332. CFG_CHECK(GetTupleData, handle, &tuple);
  333. CFG_CHECK(ParseTuple, handle, &tuple, &parse);
  334. if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg;
  335. if (cfg->index == 0) goto next_entry;
  336. link->conf.ConfigIndex = cfg->index;
  337. /* Does this card need audio output? */
  338. if (cfg->flags & CISTPL_CFTABLE_AUDIO) {
  339. link->conf.Attributes |= CONF_ENABLE_SPKR;
  340. link->conf.Status = CCSR_AUDIO_ENA;
  341. }
  342. /* Use power settings for Vcc and Vpp if present */
  343. /*  Note that the CIS values need to be rescaled */
  344. if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM))
  345. link->conf.Vcc = cfg->vcc.param[CISTPL_POWER_VNOM]/10000;
  346. else if (dflt.vcc.present & (1<<CISTPL_POWER_VNOM))
  347. link->conf.Vcc = dflt.vcc.param[CISTPL_POWER_VNOM]/10000;
  348. if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM))
  349. link->conf.Vpp1 = link->conf.Vpp2 =
  350. cfg->vpp1.param[CISTPL_POWER_VNOM]/10000;
  351. else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM))
  352. link->conf.Vpp1 = link->conf.Vpp2 =
  353. dflt.vpp1.param[CISTPL_POWER_VNOM]/10000;
  354. /* Do we need to allocate an interrupt? */
  355. if (cfg->irq.IRQInfo1 || dflt.irq.IRQInfo1)
  356. link->conf.Attributes |= CONF_ENABLE_IRQ;
  357. /* IO window settings */
  358. link->io.NumPorts1 = link->io.NumPorts2 = 0;
  359. if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
  360. cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
  361. link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
  362. if (!(io->flags & CISTPL_IO_8BIT))
  363. link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
  364. if (!(io->flags & CISTPL_IO_16BIT))
  365. link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  366. link->io.BasePort1 = io->win[0].base;
  367. link->io.NumPorts1 = io->win[0].len;
  368. if (io->nwin > 1) {
  369. link->io.Attributes2 = link->io.Attributes1;
  370. link->io.BasePort2 = io->win[1].base;
  371. link->io.NumPorts2 = io->win[1].len;
  372. }
  373. }
  374. /* This reserves IO space but doesn't actually enable it */
  375. CFG_CHECK(RequestIO, link->handle, &link->io); 
  376. /*
  377.   Now set up a common memory window, if needed.  There is room
  378.   in the dev_link_t structure for one memory window handle,
  379.   but if the base addresses need to be saved, or if multiple
  380.   windows are needed, the info should go in the private data
  381.   structure for this device.
  382.   
  383.   Note that the memory window base is a physical address, and
  384.   needs to be mapped to virtual space with ioremap() before it
  385.   is used.
  386. */
  387. if ((cfg->mem.nwin > 0) || (dflt.mem.nwin > 0)) {
  388. cistpl_mem_t *mem =
  389. (cfg->mem.nwin) ? &cfg->mem : &dflt.mem;
  390. req.Attributes = WIN_DATA_WIDTH_16|WIN_MEMORY_TYPE_CM;
  391. req.Base = mem->win[0].host_addr;
  392. req.Size = mem->win[0].len;
  393. req.AccessSpeed = 0;
  394. link->win = (window_handle_t)link->handle;
  395. CFG_CHECK(RequestWindow, &link->win, &req);
  396. map.Page = 0; map.CardOffset = mem->win[0].card_addr;
  397. CFG_CHECK(MapMemPage, link->win, &map);
  398. }
  399. /* If we got this far, we're cool! */
  400. break;
  401. next_entry:
  402. CS_CHECK(GetNextTuple, handle, &tuple);
  403. }
  404.     /*
  405.       Allocate an interrupt line.  Note that this does not assign a
  406.       handler to the interrupt, unless the 'Handler' member of the
  407.       irq structure is initialized.
  408.     */
  409. if (link->conf.Attributes & CONF_ENABLE_IRQ)
  410. CS_CHECK(RequestIRQ, link->handle, &link->irq);
  411. /*
  412.   This actually configures the PCMCIA socket -- setting up
  413.   the I/O windows and the interrupt mapping, and putting the
  414.   card and host interface into "Memory and IO" mode.
  415. */
  416. CS_CHECK(RequestConfiguration, link->handle, &link->conf);
  417. ((local_info_t*)link->priv)->eth_dev = 
  418. init_airo_card( link->irq.AssignedIRQ,
  419. link->io.BasePort1, 1 );
  420. if (!((local_info_t*)link->priv)->eth_dev) goto cs_failed;
  421. /*
  422.   At this point, the dev_node_t structure(s) need to be
  423.   initialized and arranged in a linked list at link->dev.
  424. */
  425. strcpy(dev->node.dev_name, ((local_info_t*)link->priv)->eth_dev->name );
  426. dev->node.major = dev->node.minor = 0;
  427. link->dev = &dev->node;
  428. /* Finally, report what we've done */
  429. printk(KERN_INFO "%s: index 0x%02x: Vcc %d.%d",
  430.        dev->node.dev_name, link->conf.ConfigIndex,
  431.        link->conf.Vcc/10, link->conf.Vcc%10);
  432. if (link->conf.Vpp1)
  433. printk(", Vpp %d.%d", link->conf.Vpp1/10, link->conf.Vpp1%10);
  434. if (link->conf.Attributes & CONF_ENABLE_IRQ)
  435. printk(", irq %d", link->irq.AssignedIRQ);
  436. if (link->io.NumPorts1)
  437. printk(", io 0x%04x-0x%04x", link->io.BasePort1,
  438.        link->io.BasePort1+link->io.NumPorts1-1);
  439. if (link->io.NumPorts2)
  440. printk(" & 0x%04x-0x%04x", link->io.BasePort2,
  441.        link->io.BasePort2+link->io.NumPorts2-1);
  442. if (link->win)
  443. printk(", mem 0x%06lx-0x%06lx", req.Base,
  444.        req.Base+req.Size-1);
  445. printk("n");
  446. link->state &= ~DEV_CONFIG_PENDING;
  447. return;
  448.  cs_failed:
  449. cs_error(link->handle, last_fn, last_ret);
  450. airo_release((u_long)link);
  451. } /* airo_config */
  452. /*======================================================================
  453.   
  454.   After a card is removed, airo_release() will unregister the
  455.   device, and release the PCMCIA configuration.  If the device is
  456.   still open, this will be postponed until it is closed.
  457.   
  458.   ======================================================================*/
  459. static void airo_release(u_long arg)
  460. {
  461. dev_link_t *link = (dev_link_t *)arg;
  462. DEBUG(0, "airo_release(0x%p)n", link);
  463. /*
  464.   If the device is currently in use, we won't release until it
  465.   is actually closed, because until then, we can't be sure that
  466.   no one will try to access the device or its data structures.
  467. */
  468. if (link->open) {
  469. DEBUG(1, "airo_cs: release postponed, '%s' still openn",
  470.       link->dev->dev_name);
  471. link->state |= DEV_STALE_CONFIG;
  472. return;
  473. }
  474. /* Unlink the device chain */
  475. link->dev = NULL;
  476. /*
  477.   In a normal driver, additional code may be needed to release
  478.   other kernel data structures associated with this device. 
  479. */
  480. /* Don't bother checking to see if these succeed or not */
  481. if (link->win)
  482. CardServices(ReleaseWindow, link->win);
  483. CardServices(ReleaseConfiguration, link->handle);
  484. if (link->io.NumPorts1)
  485. CardServices(ReleaseIO, link->handle, &link->io);
  486. if (link->irq.AssignedIRQ)
  487. CardServices(ReleaseIRQ, link->handle, &link->irq);
  488. link->state &= ~DEV_CONFIG;
  489. } /* airo_release */
  490. /*======================================================================
  491.   
  492.   The card status event handler.  Mostly, this schedules other
  493.   stuff to run after an event is received.
  494.   When a CARD_REMOVAL event is received, we immediately set a
  495.   private flag to block future accesses to this device.  All the
  496.   functions that actually access the device should check this flag
  497.   to make sure the card is still present.
  498.   
  499.   ======================================================================*/
  500. static int airo_event(event_t event, int priority,
  501.       event_callback_args_t *args)
  502. {
  503. dev_link_t *link = args->client_data;
  504. local_info_t *local = link->priv;
  505. DEBUG(1, "airo_event(0x%06x)n", event);
  506. switch (event) {
  507. case CS_EVENT_CARD_REMOVAL:
  508. link->state &= ~DEV_PRESENT;
  509. if (link->state & DEV_CONFIG) {
  510. netif_device_detach(local->eth_dev);
  511. mod_timer(&link->release, jiffies + HZ/20);
  512. }
  513. break;
  514. case CS_EVENT_CARD_INSERTION:
  515. link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  516. airo_config(link);
  517. break;
  518. case CS_EVENT_PM_SUSPEND:
  519. link->state |= DEV_SUSPEND;
  520. /* Fall through... */
  521. case CS_EVENT_RESET_PHYSICAL:
  522. if (link->state & DEV_CONFIG) {
  523. netif_device_detach(local->eth_dev);
  524. CardServices(ReleaseConfiguration, link->handle);
  525. }
  526. break;
  527. case CS_EVENT_PM_RESUME:
  528. link->state &= ~DEV_SUSPEND;
  529. /* Fall through... */
  530. case CS_EVENT_CARD_RESET:
  531. if (link->state & DEV_CONFIG) {
  532. CardServices(RequestConfiguration, link->handle, &link->conf);
  533. reset_airo_card(local->eth_dev);
  534. netif_device_attach(local->eth_dev);
  535. }
  536. break;
  537. }
  538. return 0;
  539. } /* airo_event */
  540. /*====================================================================*/
  541. static int airo_cs_init(void)
  542. {
  543. servinfo_t serv;
  544. DEBUG(0, "%sn", version);
  545. CardServices(GetCardServicesInfo, &serv);
  546. if (serv.Revision != CS_RELEASE_CODE) {
  547. printk(KERN_NOTICE "airo_cs: Card Services release "
  548.        "does not match!n");
  549. return -1;
  550. }
  551. register_pcmcia_driver(&dev_info, &airo_attach, &airo_detach);
  552. return 0;
  553. }
  554. static void airo_cs_cleanup(void)
  555. {
  556. DEBUG(0, "airo_cs: unloadingn");
  557. unregister_pcmcia_driver(&dev_info);
  558. while (dev_list != NULL) {
  559. if (dev_list->state & DEV_CONFIG)
  560. airo_release((u_long)dev_list);
  561. airo_detach(dev_list);
  562. }
  563. }
  564. /*
  565.     This program is free software; you can redistribute it and/or
  566.     modify it under the terms of the GNU General Public License
  567.     as published by the Free Software Foundation; either version 2
  568.     of the License, or (at your option) any later version.
  569.     This program is distributed in the hope that it will be useful,
  570.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  571.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  572.     GNU General Public License for more details.
  573.     In addition:
  574.     Redistribution and use in source and binary forms, with or without
  575.     modification, are permitted provided that the following conditions
  576.     are met:
  577.     1. Redistributions of source code must retain the above copyright
  578.        notice, this list of conditions and the following disclaimer.
  579.     2. Redistributions in binary form must reproduce the above copyright
  580.        notice, this list of conditions and the following disclaimer in the
  581.        documentation and/or other materials provided with the distribution.
  582.     3. The name of the author may not be used to endorse or promote
  583.        products derived from this software without specific prior written
  584.        permission.
  585.     THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  586.     IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  587.     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  588.     ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  589.     INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  590.     (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  591.     SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  592.     HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  593.     STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
  594.     IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  595.     POSSIBILITY OF SUCH DAMAGE.    
  596. */
  597. module_init(airo_cs_init);
  598. module_exit(airo_cs_cleanup);