pcmcia: remove cs_types.h
[linux-2.6/cjktty.git] / drivers / staging / wlags49_h2 / wl_cs.c
blobafe457541172444dbc93c6b515b2ee1fede34cfc
1 /*******************************************************************************
2 * Agere Systems Inc.
3 * Wireless device driver for Linux (wlags49).
5 * Copyright (c) 1998-2003 Agere Systems Inc.
6 * All rights reserved.
7 * http://www.agere.com
9 * Initially developed by TriplePoint, Inc.
10 * http://www.triplepoint.com
12 *------------------------------------------------------------------------------
14 * This file contains processing and initialization specific to Card Services
15 * devices (PCMCIA, CF).
17 *------------------------------------------------------------------------------
19 * SOFTWARE LICENSE
21 * This software is provided subject to the following terms and conditions,
22 * which you should read carefully before using the software. Using this
23 * software indicates your acceptance of these terms and conditions. If you do
24 * not agree with these terms and conditions, do not use the software.
26 * Copyright © 2003 Agere Systems Inc.
27 * All rights reserved.
29 * Redistribution and use in source or binary forms, with or without
30 * modifications, are permitted provided that the following conditions are met:
32 * . Redistributions of source code must retain the above copyright notice, this
33 * list of conditions and the following Disclaimer as comments in the code as
34 * well as in the documentation and/or other materials provided with the
35 * distribution.
37 * . Redistributions in binary form must reproduce the above copyright notice,
38 * this list of conditions and the following Disclaimer in the documentation
39 * and/or other materials provided with the distribution.
41 * . Neither the name of Agere Systems Inc. nor the names of the contributors
42 * may be used to endorse or promote products derived from this software
43 * without specific prior written permission.
45 * Disclaimer
47 * THIS SOFTWARE IS PROVIDED “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES,
48 * INCLUDING, BUT NOT LIMITED TO, INFRINGEMENT AND THE IMPLIED WARRANTIES OF
49 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ANY
50 * USE, MODIFICATION OR DISTRIBUTION OF THIS SOFTWARE IS SOLELY AT THE USERS OWN
51 * RISK. IN NO EVENT SHALL AGERE SYSTEMS INC. OR CONTRIBUTORS BE LIABLE FOR ANY
52 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
53 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
54 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
55 * ON ANY THEORY OF LIABILITY, INCLUDING, BUT NOT LIMITED TO, CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
57 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
58 * DAMAGE.
60 ******************************************************************************/
62 /*******************************************************************************
63 * include files
64 ******************************************************************************/
65 #include <wl_version.h>
67 #include <linux/kernel.h>
68 #include <linux/sched.h>
69 #include <linux/ptrace.h>
70 #include <linux/ctype.h>
71 #include <linux/string.h>
72 #include <linux/timer.h>
73 #include <linux/interrupt.h>
74 #include <linux/in.h>
75 #include <linux/delay.h>
76 #include <asm/io.h>
77 #include <asm/system.h>
78 #include <asm/bitops.h>
80 #include <linux/netdevice.h>
81 #include <linux/etherdevice.h>
82 #include <linux/skbuff.h>
83 #include <linux/if_arp.h>
84 #include <linux/ioport.h>
86 #include <pcmcia/cs.h>
87 #include <pcmcia/cistpl.h>
88 #include <pcmcia/cisreg.h>
89 #include <pcmcia/ciscode.h>
90 #include <pcmcia/ds.h>
91 #include <debug.h>
93 #include <hcf.h>
94 #include <dhf.h>
95 #include <hcfdef.h>
97 #include <wl_if.h>
98 #include <wl_internal.h>
99 #include <wl_util.h>
100 #include <wl_main.h>
101 #include <wl_netdev.h>
102 #include <wl_cs.h>
103 #include <wl_sysfs.h>
106 /*******************************************************************************
107 * global definitions
108 ******************************************************************************/
109 #if DBG
110 extern dbg_info_t *DbgInfo;
111 #endif /* DBG */
114 /*******************************************************************************
115 * wl_adapter_attach()
116 *******************************************************************************
118 * DESCRIPTION:
120 * Creates an instance of the driver, allocating local data structures for
121 * one device. The device is registered with Card Services.
123 * PARAMETERS:
125 * none
127 * RETURNS:
129 * pointer to an allocated dev_link_t structure
130 * NULL on failure
132 ******************************************************************************/
133 static int wl_adapter_attach(struct pcmcia_device *link)
135 struct net_device *dev;
136 struct wl_private *lp;
137 /*------------------------------------------------------------------------*/
139 DBG_FUNC( "wl_adapter_attach" );
140 DBG_ENTER( DbgInfo );
142 dev = wl_device_alloc();
143 if(dev == NULL) {
144 DBG_ERROR( DbgInfo, "wl_device_alloc returned NULL\n");
145 return -ENOMEM;
148 link->io.NumPorts1 = HCF_NUM_IO_PORTS;
149 link->io.Attributes1 = IO_DATA_PATH_WIDTH_16;
150 link->io.IOAddrLines = 6;
151 link->conf.Attributes = CONF_ENABLE_IRQ;
152 link->conf.IntType = INT_MEMORY_AND_IO;
153 link->conf.ConfigIndex = 5;
154 link->conf.Present = PRESENT_OPTION;
156 link->priv = dev;
157 lp = wl_priv(dev);
158 lp->link = link;
160 wl_adapter_insert(link);
162 DBG_LEAVE( DbgInfo );
163 return 0;
164 } // wl_adapter_attach
165 /*============================================================================*/
169 /*******************************************************************************
170 * wl_adapter_detach()
171 *******************************************************************************
173 * DESCRIPTION:
175 * This deletes a driver "instance". The device is de-registered with Card
176 * Services. If it has been released, then the net device is unregistered, and
177 * all local data structures are freed. Otherwise, the structures will be
178 * freed when the device is released.
180 * PARAMETERS:
182 * link - pointer to the dev_link_t structure representing the device to
183 * detach
185 * RETURNS:
187 * N/A
189 ******************************************************************************/
190 static void wl_adapter_detach(struct pcmcia_device *link)
192 struct net_device *dev = link->priv;
193 /*------------------------------------------------------------------------*/
196 DBG_FUNC( "wl_adapter_detach" );
197 DBG_ENTER( DbgInfo );
198 DBG_PARAM( DbgInfo, "link", "0x%p", link );
200 wl_adapter_release(link);
202 if (dev) {
203 unregister_wlags_sysfs(dev);
204 unregister_netdev(dev);
207 wl_device_dealloc(dev);
209 DBG_LEAVE( DbgInfo );
210 } // wl_adapter_detach
211 /*============================================================================*/
214 /*******************************************************************************
215 * wl_adapter_release()
216 *******************************************************************************
218 * DESCRIPTION:
220 * After a card is removed, this routine will release the PCMCIA
221 * configuration. If the device is still open, this will be postponed until it
222 * is closed.
224 * PARAMETERS:
226 * arg - a u_long representing a pointer to a dev_link_t structure for the
227 * device to be released.
229 * RETURNS:
231 * N/A
233 ******************************************************************************/
234 void wl_adapter_release( struct pcmcia_device *link )
236 DBG_FUNC( "wl_adapter_release" );
237 DBG_ENTER( DbgInfo );
238 DBG_PARAM( DbgInfo, "link", "0x%p", link);
240 /* Stop hardware */
241 wl_remove(link->priv);
243 pcmcia_disable_device(link);
245 DBG_LEAVE( DbgInfo );
246 } // wl_adapter_release
247 /*============================================================================*/
249 static int wl_adapter_suspend(struct pcmcia_device *link)
251 struct net_device *dev = link->priv;
253 //if (link->open) {
254 netif_device_detach(dev);
255 wl_suspend(dev);
256 //// CHECK! pcmcia_release_configuration(link->handle);
259 return 0;
260 } // wl_adapter_suspend
262 static int wl_adapter_resume(struct pcmcia_device *link)
264 struct net_device *dev = link->priv;
266 wl_resume(dev);
268 netif_device_attach( dev );
270 return 0;
271 } // wl_adapter_resume
273 /*******************************************************************************
274 * wl_adapter_insert()
275 *******************************************************************************
277 * DESCRIPTION:
279 * wl_adapter_insert() is scheduled to run after a CARD_INSERTION event is
280 * received, to configure the PCMCIA socket, and to make the ethernet device
281 * available to the system.
283 * PARAMETERS:
285 * link - pointer to the dev_link_t structure representing the device to
286 * insert
288 * RETURNS:
290 * N/A
292 ******************************************************************************/
293 void wl_adapter_insert( struct pcmcia_device *link )
295 struct net_device *dev;
296 int i;
297 int ret;
298 /*------------------------------------------------------------------------*/
300 DBG_FUNC( "wl_adapter_insert" );
301 DBG_ENTER( DbgInfo );
302 DBG_PARAM( DbgInfo, "link", "0x%p", link );
304 dev = link->priv;
306 /* Do we need to allocate an interrupt? */
307 link->conf.Attributes |= CONF_ENABLE_IRQ;
309 ret = pcmcia_request_io(link, &link->io);
310 if (ret != 0)
311 goto failed;
313 ret = pcmcia_request_irq(link, (void *) wl_isr);
314 if (ret != 0)
315 goto failed;
317 ret = pcmcia_request_configuration(link, &link->conf);
318 if (ret != 0)
319 goto failed;
321 dev->irq = link->irq;
322 dev->base_addr = link->io.BasePort1;
324 SET_NETDEV_DEV(dev, &link->dev);
325 if (register_netdev(dev) != 0) {
326 printk("%s: register_netdev() failed\n", MODULE_NAME);
327 goto failed;
330 register_wlags_sysfs(dev);
332 printk(KERN_INFO "%s: Wireless, io_addr %#03lx, irq %d, ""mac_address ",
333 dev->name, dev->base_addr, dev->irq);
334 for( i = 0; i < ETH_ALEN; i++ ) {
335 printk("%02X%c", dev->dev_addr[i], ((i < (ETH_ALEN-1)) ? ':' : '\n'));
338 DBG_LEAVE( DbgInfo );
339 return;
341 failed:
342 wl_adapter_release( link );
344 DBG_LEAVE(DbgInfo);
345 return;
346 } // wl_adapter_insert
347 /*============================================================================*/
350 /*******************************************************************************
351 * wl_adapter_open()
352 *******************************************************************************
354 * DESCRIPTION:
356 * Open the device.
358 * PARAMETERS:
360 * dev - a pointer to a net_device structure representing the network
361 * device to open.
363 * RETURNS:
365 * 0 on success
366 * errno value otherwise
368 ******************************************************************************/
369 int wl_adapter_open( struct net_device *dev )
371 struct wl_private *lp = wl_priv(dev);
372 struct pcmcia_device *link = lp->link;
373 int result = 0;
374 int hcf_status = HCF_SUCCESS;
375 /*------------------------------------------------------------------------*/
378 DBG_FUNC( "wl_adapter_open" );
379 DBG_ENTER( DbgInfo );
380 DBG_PRINT( "%s\n", VERSION_INFO );
381 DBG_PARAM( DbgInfo, "dev", "%s (0x%p)", dev->name, dev );
383 if(!pcmcia_dev_present(link))
385 DBG_LEAVE( DbgInfo );
386 return -ENODEV;
389 link->open++;
391 hcf_status = wl_open( dev );
393 if( hcf_status != HCF_SUCCESS ) {
394 link->open--;
395 result = -ENODEV;
398 DBG_LEAVE( DbgInfo );
399 return result;
400 } // wl_adapter_open
401 /*============================================================================*/
404 /*******************************************************************************
405 * wl_adapter_close()
406 *******************************************************************************
408 * DESCRIPTION:
410 * Close the device.
412 * PARAMETERS:
414 * dev - a pointer to a net_device structure representing the network
415 * device to close.
417 * RETURNS:
419 * 0 on success
420 * errno value otherwise
422 ******************************************************************************/
423 int wl_adapter_close( struct net_device *dev )
425 struct wl_private *lp = wl_priv(dev);
426 struct pcmcia_device *link = lp->link;
427 /*------------------------------------------------------------------------*/
430 DBG_FUNC( "wl_adapter_close" );
431 DBG_ENTER( DbgInfo );
432 DBG_PARAM( DbgInfo, "dev", "%s (0x%p)", dev->name, dev );
434 if( link == NULL ) {
435 DBG_LEAVE( DbgInfo );
436 return -ENODEV;
439 DBG_TRACE( DbgInfo, "%s: Shutting down adapter.\n", dev->name );
440 wl_close( dev );
442 link->open--;
444 DBG_LEAVE( DbgInfo );
445 return 0;
446 } // wl_adapter_close
447 /*============================================================================*/
449 static struct pcmcia_device_id wl_adapter_ids[] = {
450 #if ! ((HCF_TYPE) & HCF_TYPE_HII5)
451 PCMCIA_DEVICE_MANF_CARD(0x0156, 0x0003),
452 PCMCIA_DEVICE_PROD_ID12("Agere Systems", "Wireless PC Card Model 0110",
453 0x33103a9b, 0xe175b0dd),
454 #else
455 PCMCIA_DEVICE_MANF_CARD(0x0156, 0x0004),
456 PCMCIA_DEVICE_PROD_ID12("Linksys", "WCF54G_Wireless-G_CompactFlash_Card",
457 0x0733cc81, 0x98a599e1),
458 #endif // (HCF_TYPE) & HCF_TYPE_HII5
459 PCMCIA_DEVICE_NULL,
461 MODULE_DEVICE_TABLE(pcmcia, wl_adapter_ids);
463 static struct pcmcia_driver wlags49_driver = {
464 .owner = THIS_MODULE,
465 .drv = {
466 .name = DRIVER_NAME,
468 .probe = wl_adapter_attach,
469 .remove = wl_adapter_detach,
470 .id_table = wl_adapter_ids,
471 .suspend = wl_adapter_suspend,
472 .resume = wl_adapter_resume,
477 /*******************************************************************************
478 * wl_adapter_init_module()
479 *******************************************************************************
481 * DESCRIPTION:
483 * Called by init_module() to perform PCMCIA driver initialization.
485 * PARAMETERS:
487 * N/A
489 * RETURNS:
491 * 0 on success
492 * -1 on error
494 ******************************************************************************/
495 int wl_adapter_init_module( void )
497 int ret;
498 /*------------------------------------------------------------------------*/
501 DBG_FUNC( "wl_adapter_init_module" );
502 DBG_ENTER( DbgInfo );
503 DBG_TRACE( DbgInfo, "wl_adapter_init_module() -- PCMCIA\n" );
505 ret = pcmcia_register_driver(&wlags49_driver);
507 DBG_LEAVE( DbgInfo );
508 return ret;
509 } // wl_adapter_init_module
510 /*============================================================================*/
513 /*******************************************************************************
514 * wl_adapter_cleanup_module()
515 *******************************************************************************
517 * DESCRIPTION:
519 * Called by cleanup_module() to perform driver uninitialization.
521 * PARAMETERS:
523 * N/A
525 * RETURNS:
527 * N/A
529 ******************************************************************************/
530 void wl_adapter_cleanup_module( void )
532 DBG_FUNC( "wl_adapter_cleanup_module" );
533 DBG_ENTER( DbgInfo );
534 DBG_TRACE( DbgInfo, "wl_adapter_cleanup_module() -- PCMCIA\n" );
537 pcmcia_unregister_driver(&wlags49_driver);
539 DBG_LEAVE( DbgInfo );
540 return;
541 } // wl_adapter_cleanup_module
542 /*============================================================================*/
545 /*******************************************************************************
546 * wl_adapter_is_open()
547 *******************************************************************************
549 * DESCRIPTION:
551 * Check with Card Services to determine if this device is open.
553 * PARAMETERS:
555 * dev - a pointer to the net_device structure whose open status will be
556 * checked
558 * RETURNS:
560 * nonzero if device is open
561 * 0 otherwise
563 ******************************************************************************/
564 int wl_adapter_is_open( struct net_device *dev )
566 struct wl_private *lp = wl_priv(dev);
567 struct pcmcia_device *link = lp->link;
569 if(!pcmcia_dev_present(link)) {
570 return 0;
573 return( link->open );
574 } // wl_adapter_is_open
575 /*============================================================================*/
578 #if DBG
580 /*******************************************************************************
581 * DbgEvent()
582 *******************************************************************************
584 * DESCRIPTION:
586 * Converts the card serivces events to text for debugging.
588 * PARAMETERS:
590 * mask - a integer representing the error(s) being reported by Card
591 * Services.
593 * RETURNS:
595 * a pointer to a string describing the error(s)
597 ******************************************************************************/
598 const char* DbgEvent( int mask )
600 static char DbgBuffer[256];
601 char *pBuf;
602 /*------------------------------------------------------------------------*/
605 pBuf = DbgBuffer;
606 *pBuf = '\0';
609 if( mask & CS_EVENT_WRITE_PROTECT )
610 strcat( pBuf, "WRITE_PROTECT " );
612 if(mask & CS_EVENT_CARD_LOCK)
613 strcat( pBuf, "CARD_LOCK " );
615 if(mask & CS_EVENT_CARD_INSERTION)
616 strcat( pBuf, "CARD_INSERTION " );
618 if(mask & CS_EVENT_CARD_REMOVAL)
619 strcat( pBuf, "CARD_REMOVAL " );
621 if(mask & CS_EVENT_BATTERY_DEAD)
622 strcat( pBuf, "BATTERY_DEAD " );
624 if(mask & CS_EVENT_BATTERY_LOW)
625 strcat( pBuf, "BATTERY_LOW " );
627 if(mask & CS_EVENT_READY_CHANGE)
628 strcat( pBuf, "READY_CHANGE " );
630 if(mask & CS_EVENT_CARD_DETECT)
631 strcat( pBuf, "CARD_DETECT " );
633 if(mask & CS_EVENT_RESET_REQUEST)
634 strcat( pBuf, "RESET_REQUEST " );
636 if(mask & CS_EVENT_RESET_PHYSICAL)
637 strcat( pBuf, "RESET_PHYSICAL " );
639 if(mask & CS_EVENT_CARD_RESET)
640 strcat( pBuf, "CARD_RESET " );
642 if(mask & CS_EVENT_REGISTRATION_COMPLETE)
643 strcat( pBuf, "REGISTRATION_COMPLETE " );
645 // if(mask & CS_EVENT_RESET_COMPLETE)
646 // strcat( pBuf, "RESET_COMPLETE " );
648 if(mask & CS_EVENT_PM_SUSPEND)
649 strcat( pBuf, "PM_SUSPEND " );
651 if(mask & CS_EVENT_PM_RESUME)
652 strcat( pBuf, "PM_RESUME " );
654 if(mask & CS_EVENT_INSERTION_REQUEST)
655 strcat( pBuf, "INSERTION_REQUEST " );
657 if(mask & CS_EVENT_EJECTION_REQUEST)
658 strcat( pBuf, "EJECTION_REQUEST " );
660 if(mask & CS_EVENT_MTD_REQUEST)
661 strcat( pBuf, "MTD_REQUEST " );
663 if(mask & CS_EVENT_ERASE_COMPLETE)
664 strcat( pBuf, "ERASE_COMPLETE " );
666 if(mask & CS_EVENT_REQUEST_ATTENTION)
667 strcat( pBuf, "REQUEST_ATTENTION " );
669 if(mask & CS_EVENT_CB_DETECT)
670 strcat( pBuf, "CB_DETECT " );
672 if(mask & CS_EVENT_3VCARD)
673 strcat( pBuf, "3VCARD " );
675 if(mask & CS_EVENT_XVCARD)
676 strcat( pBuf, "XVCARD " );
679 if( *pBuf ) {
680 pBuf[strlen(pBuf) - 1] = '\0';
681 } else {
682 if( mask != 0x0 ) {
683 sprintf( pBuf, "<<0x%08x>>", mask );
687 return pBuf;
688 } // DbgEvent
689 /*============================================================================*/
691 #endif /* DBG */