avm_cs.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:16k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id: avm_cs.c,v 1.1.4.1 2001/11/20 14:19:34 kai Exp $
  2.  *
  3.  * A PCMCIA client driver for AVM B1/M1/M2
  4.  *
  5.  * Copyright 1999 by Carsten Paeth <calle@calle.de>
  6.  *
  7.  * This software may be used and distributed according to the terms
  8.  * of the GNU General Public License, incorporated herein by reference.
  9.  *
  10.  */
  11. #include <linux/module.h>
  12. #include <linux/kernel.h>
  13. #include <linux/init.h>
  14. #include <linux/sched.h>
  15. #include <linux/ptrace.h>
  16. #include <linux/slab.h>
  17. #include <linux/string.h>
  18. #include <linux/timer.h>
  19. #include <linux/tty.h>
  20. #include <linux/serial.h>
  21. #include <linux/major.h>
  22. #include <asm/io.h>
  23. #include <asm/system.h>
  24. #include <pcmcia/version.h>
  25. #include <pcmcia/cs_types.h>
  26. #include <pcmcia/cs.h>
  27. #include <pcmcia/cistpl.h>
  28. #include <pcmcia/ciscode.h>
  29. #include <pcmcia/ds.h>
  30. #include <pcmcia/cisreg.h>
  31. #include <linux/skbuff.h>
  32. #include <linux/capi.h>
  33. #include <linux/b1lli.h>
  34. #include <linux/b1pcmcia.h>
  35. /*====================================================================*/
  36. MODULE_DESCRIPTION("CAPI4Linux: PCMCIA client driver for AVM B1/M1/M2");
  37. MODULE_AUTHOR("Carsten Paeth");
  38. MODULE_LICENSE("GPL");
  39. /*====================================================================*/
  40. /* Parameters that can be set with 'insmod' */
  41. /* This means pick from 15, 12, 11, 10, 9, 7, 5, 4, and 3 */
  42. static int default_irq_list[10] = { 15, 12, 11, 10, 9, 7, 5, 4, 3, -1 };
  43. static int irq_list[10] = { -1 };
  44. MODULE_PARM(irq_list, "1-10i");
  45. /*====================================================================*/
  46. /*
  47.    The event() function is this driver's Card Services event handler.
  48.    It will be called by Card Services when an appropriate card status
  49.    event is received.  The config() and release() entry points are
  50.    used to configure or release a socket, in response to card insertion
  51.    and ejection events.  They are invoked from the skeleton event
  52.    handler.
  53. */
  54. static void avmcs_config(dev_link_t *link);
  55. static void avmcs_release(u_long arg);
  56. static int avmcs_event(event_t event, int priority,
  57.   event_callback_args_t *args);
  58. /*
  59.    The attach() and detach() entry points are used to create and destroy
  60.    "instances" of the driver, where each instance represents everything
  61.    needed to manage one actual PCMCIA card.
  62. */
  63. static dev_link_t *avmcs_attach(void);
  64. static void avmcs_detach(dev_link_t *);
  65. /*
  66.    The dev_info variable is the "key" that is used to match up this
  67.    device driver with appropriate cards, through the card configuration
  68.    database.
  69. */
  70. static dev_info_t dev_info = "avm_cs";
  71. /*
  72.    A linked list of "instances" of the skeleton device.  Each actual
  73.    PCMCIA card corresponds to one device instance, and is described
  74.    by one dev_link_t structure (defined in ds.h).
  75.    You may not want to use a linked list for this -- for example, the
  76.    memory card driver uses an array of dev_link_t pointers, where minor
  77.    device numbers are used to derive the corresponding array index.
  78. */
  79. static dev_link_t *dev_list = NULL;
  80. /*
  81.    A dev_link_t structure has fields for most things that are needed
  82.    to keep track of a socket, but there will usually be some device
  83.    specific information that also needs to be kept track of.  The
  84.    'priv' pointer in a dev_link_t structure can be used to point to
  85.    a device-specific private data structure, like this.
  86.    A driver needs to provide a dev_node_t structure for each device
  87.    on a card.  In some cases, there is only one device per card (for
  88.    example, ethernet cards, modems).  In other cases, there may be
  89.    many actual or logical devices (SCSI adapters, memory cards with
  90.    multiple partitions).  The dev_node_t structures need to be kept
  91.    in a linked list starting at the 'dev' field of a dev_link_t
  92.    structure.  We allocate them in the card's private data structure,
  93.    because they generally can't be allocated dynamically.
  94. */
  95.    
  96. typedef struct local_info_t {
  97.     dev_node_t node;
  98. } local_info_t;
  99. /*====================================================================*/
  100. static void cs_error(client_handle_t handle, int func, int ret)
  101. {
  102.     error_info_t err = { func, ret };
  103.     CardServices(ReportError, handle, &err);
  104. }
  105. /*======================================================================
  106.     avmcs_attach() creates an "instance" of the driver, allocating
  107.     local data structures for one device.  The device is registered
  108.     with Card Services.
  109.     The dev_link structure is initialized, but we don't actually
  110.     configure the card at this point -- we wait until we receive a
  111.     card insertion event.
  112.     
  113. ======================================================================*/
  114. static dev_link_t *avmcs_attach(void)
  115. {
  116.     client_reg_t client_reg;
  117.     dev_link_t *link;
  118.     local_info_t *local;
  119.     int ret, i;
  120.     
  121.     /* Initialize the dev_link_t structure */
  122.     link = kmalloc(sizeof(struct dev_link_t), GFP_KERNEL);
  123.     if (!link)
  124. return NULL;
  125.     memset(link, 0, sizeof(struct dev_link_t));
  126.     link->release.function = &avmcs_release;
  127.     link->release.data = (u_long)link;
  128.     /* The io structure describes IO port mapping */
  129.     link->io.NumPorts1 = 16;
  130.     link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  131.     link->io.NumPorts2 = 0;
  132.     /* Interrupt setup */
  133.     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
  134.     link->irq.Attributes = IRQ_TYPE_DYNAMIC_SHARING|IRQ_FIRST_SHARED;
  135.     link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  136.     if (irq_list[0] != -1) {
  137.     for (i = 0; i < 10 && irq_list[i] > 0; i++)
  138.        link->irq.IRQInfo2 |= 1 << irq_list[i];
  139.     } else {
  140.     for (i = 0; i < 10 && default_irq_list[i] > 0; i++)
  141.        link->irq.IRQInfo2 |= 1 << default_irq_list[i];
  142.     }
  143.     
  144.     /* General socket configuration */
  145.     link->conf.Attributes = CONF_ENABLE_IRQ;
  146.     link->conf.Vcc = 50;
  147.     link->conf.IntType = INT_MEMORY_AND_IO;
  148.     link->conf.ConfigIndex = 1;
  149.     link->conf.Present = PRESENT_OPTION;
  150.     /* Allocate space for private device-specific data */
  151.     local = kmalloc(sizeof(local_info_t), GFP_KERNEL);
  152.     if (!local)
  153. return NULL;
  154.     memset(local, 0, sizeof(local_info_t));
  155.     link->priv = local;
  156.     
  157.     /* Register with Card Services */
  158.     link->next = dev_list;
  159.     dev_list = link;
  160.     client_reg.dev_info = &dev_info;
  161.     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  162.     client_reg.EventMask =
  163. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  164. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  165. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  166.     client_reg.event_handler = &avmcs_event;
  167.     client_reg.Version = 0x0210;
  168.     client_reg.event_callback_args.client_data = link;
  169.     ret = CardServices(RegisterClient, &link->handle, &client_reg);
  170.     if (ret != 0) {
  171. cs_error(link->handle, RegisterClient, ret);
  172. avmcs_detach(link);
  173. return NULL;
  174.     }
  175.     return link;
  176. } /* avmcs_attach */
  177. /*======================================================================
  178.     This deletes a driver "instance".  The device is de-registered
  179.     with Card Services.  If it has been released, all local data
  180.     structures are freed.  Otherwise, the structures will be freed
  181.     when the device is released.
  182. ======================================================================*/
  183. static void avmcs_detach(dev_link_t *link)
  184. {
  185.     dev_link_t **linkp;
  186.     /* Locate device structure */
  187.     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  188. if (*linkp == link) break;
  189.     if (*linkp == NULL)
  190. return;
  191.     /*
  192.        If the device is currently configured and active, we won't
  193.        actually delete it yet.  Instead, it is marked so that when
  194.        the release() function is called, that will trigger a proper
  195.        detach().
  196.     */
  197.     if (link->state & DEV_CONFIG) {
  198. link->state |= DEV_STALE_LINK;
  199. return;
  200.     }
  201.     /* Break the link with Card Services */
  202.     if (link->handle)
  203. CardServices(DeregisterClient, link->handle);
  204.     
  205.     /* Unlink device structure, free pieces */
  206.     *linkp = link->next;
  207.     if (link->priv) {
  208. kfree(link->priv);
  209.     }
  210.     kfree(link);
  211.     
  212. } /* avmcs_detach */
  213. /*======================================================================
  214.     avmcs_config() is scheduled to run after a CARD_INSERTION event
  215.     is received, to configure the PCMCIA socket, and to make the
  216.     ethernet device available to the system.
  217.     
  218. ======================================================================*/
  219. static int get_tuple(int fn, client_handle_t handle, tuple_t *tuple,
  220.      cisparse_t *parse)
  221. {
  222.     int i;
  223.     i = CardServices(fn, handle, tuple);
  224.     if (i != CS_SUCCESS) return i;
  225.     i = CardServices(GetTupleData, handle, tuple);
  226.     if (i != CS_SUCCESS) return i;
  227.     return CardServices(ParseTuple, handle, tuple, parse);
  228. }
  229. #define first_tuple(a, b, c) get_tuple(GetFirstTuple, a, b, c)
  230. #define next_tuple(a, b, c) get_tuple(GetNextTuple, a, b, c)
  231. static void avmcs_config(dev_link_t *link)
  232. {
  233.     client_handle_t handle;
  234.     tuple_t tuple;
  235.     cisparse_t parse;
  236.     cistpl_cftable_entry_t *cf = &parse.cftable_entry;
  237.     local_info_t *dev;
  238.     int i;
  239.     u_char buf[64];
  240.     char devname[128];
  241.     int cardtype;
  242.     int (*addcard)(unsigned int port, unsigned irq);
  243.     
  244.     handle = link->handle;
  245.     dev = link->priv;
  246.     /*
  247.        This reads the card's CONFIG tuple to find its configuration
  248.        registers.
  249.     */
  250.     do {
  251. tuple.DesiredTuple = CISTPL_CONFIG;
  252. i = CardServices(GetFirstTuple, handle, &tuple);
  253. if (i != CS_SUCCESS) break;
  254. tuple.TupleData = buf;
  255. tuple.TupleDataMax = 64;
  256. tuple.TupleOffset = 0;
  257. i = CardServices(GetTupleData, handle, &tuple);
  258. if (i != CS_SUCCESS) break;
  259. i = CardServices(ParseTuple, handle, &tuple, &parse);
  260. if (i != CS_SUCCESS) break;
  261. link->conf.ConfigBase = parse.config.base;
  262.     } while (0);
  263.     if (i != CS_SUCCESS) {
  264. cs_error(link->handle, ParseTuple, i);
  265. link->state &= ~DEV_CONFIG_PENDING;
  266. return;
  267.     }
  268.     
  269.     /* Configure card */
  270.     link->state |= DEV_CONFIG;
  271.     do {
  272. tuple.Attributes = 0;
  273. tuple.TupleData = buf;
  274. tuple.TupleDataMax = 254;
  275. tuple.TupleOffset = 0;
  276. tuple.DesiredTuple = CISTPL_VERS_1;
  277. devname[0] = 0;
  278. if( !first_tuple(handle, &tuple, &parse) && parse.version_1.ns > 1 ) {
  279.     strncpy(devname,parse.version_1.str + parse.version_1.ofs[1], 
  280. sizeof(devname));
  281. }
  282. /*
  283.          * find IO port
  284.          */
  285. tuple.TupleData = (cisdata_t *)buf;
  286. tuple.TupleOffset = 0; tuple.TupleDataMax = 255;
  287. tuple.Attributes = 0;
  288. tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  289. i = first_tuple(handle, &tuple, &parse);
  290. while (i == CS_SUCCESS) {
  291.     if (cf->io.nwin > 0) {
  292. link->conf.ConfigIndex = cf->index;
  293. link->io.BasePort1 = cf->io.win[0].base;
  294. link->io.NumPorts1 = cf->io.win[0].len;
  295. link->io.NumPorts2 = 0;
  296.                 printk(KERN_INFO "avm_cs: testing i/o %#x-%#xn",
  297. link->io.BasePort1,
  298.         link->io.BasePort1+link->io.NumPorts1-1);
  299. i = CardServices(RequestIO, link->handle, &link->io);
  300. if (i == CS_SUCCESS) goto found_port;
  301.     }
  302.     i = next_tuple(handle, &tuple, &parse);
  303. }
  304. found_port:
  305. if (i != CS_SUCCESS) {
  306.     cs_error(link->handle, RequestIO, i);
  307.     break;
  308. }
  309. /*
  310.  * allocate an interrupt line
  311.  */
  312. i = CardServices(RequestIRQ, link->handle, &link->irq);
  313. if (i != CS_SUCCESS) {
  314.     cs_error(link->handle, RequestIRQ, i);
  315.     CardServices(ReleaseIO, link->handle, &link->io);
  316.     break;
  317. }
  318. /*
  319.          * configure the PCMCIA socket
  320.   */
  321. i = CardServices(RequestConfiguration, link->handle, &link->conf);
  322. if (i != CS_SUCCESS) {
  323.     cs_error(link->handle, RequestConfiguration, i);
  324.     CardServices(ReleaseIO, link->handle, &link->io);
  325.     CardServices(ReleaseIRQ, link->handle, &link->irq);
  326.     break;
  327. }
  328.     } while (0);
  329.     /* At this point, the dev_node_t structure(s) should be
  330.        initialized and arranged in a linked list at link->dev. */
  331.     if (devname[0]) {
  332. char *s = strrchr(devname, ' ');
  333. if (!s)
  334.    s = devname;
  335. else s++;
  336. strcpy(dev->node.dev_name, s);
  337.         if (strcmp("M1", s) == 0) {
  338.            cardtype = AVM_CARDTYPE_M1;
  339.         } else if (strcmp("M2", s) == 0) {
  340.            cardtype = AVM_CARDTYPE_M2;
  341. } else {
  342.            cardtype = AVM_CARDTYPE_B1;
  343. }
  344.     } else {
  345.         strcpy(dev->node.dev_name, "b1");
  346.         cardtype = AVM_CARDTYPE_B1;
  347.     }
  348.     dev->node.major = 64;
  349.     dev->node.minor = 0;
  350.     link->dev = &dev->node;
  351.     
  352.     link->state &= ~DEV_CONFIG_PENDING;
  353.     /* If any step failed, release any partially configured state */
  354.     if (i != 0) {
  355. avmcs_release((u_long)link);
  356. return;
  357.     }
  358.     switch (cardtype) {
  359.         case AVM_CARDTYPE_M1: addcard = b1pcmcia_addcard_m1; break;
  360.         case AVM_CARDTYPE_M2: addcard = b1pcmcia_addcard_m2; break;
  361. default:
  362.         case AVM_CARDTYPE_B1: addcard = b1pcmcia_addcard_b1; break;
  363.     }
  364.     if ((i = (*addcard)(link->io.BasePort1, link->irq.AssignedIRQ)) < 0) {
  365.         printk(KERN_ERR "avm_cs: failed to add AVM-%s-Controller at i/o %#x, irq %dn",
  366. dev->node.dev_name, link->io.BasePort1, link->irq.AssignedIRQ);
  367. avmcs_release((u_long)link);
  368. return;
  369.     }
  370.     dev->node.minor = i;
  371. } /* avmcs_config */
  372. /*======================================================================
  373.     After a card is removed, avmcs_release() will unregister the net
  374.     device, and release the PCMCIA configuration.  If the device is
  375.     still open, this will be postponed until it is closed.
  376.     
  377. ======================================================================*/
  378. static void avmcs_release(u_long arg)
  379. {
  380.     dev_link_t *link = (dev_link_t *)arg;
  381.     /*
  382.        If the device is currently in use, we won't release until it
  383.        is actually closed.
  384.     */
  385.     if (link->open) {
  386. link->state |= DEV_STALE_CONFIG;
  387. return;
  388.     }
  389.     b1pcmcia_delcard(link->io.BasePort1, link->irq.AssignedIRQ);
  390.     /* Unlink the device chain */
  391.     link->dev = NULL;
  392.     
  393.     /* Don't bother checking to see if these succeed or not */
  394.     CardServices(ReleaseConfiguration, link->handle);
  395.     CardServices(ReleaseIO, link->handle, &link->io);
  396.     CardServices(ReleaseIRQ, link->handle, &link->irq);
  397.     link->state &= ~DEV_CONFIG;
  398.     
  399.     if (link->state & DEV_STALE_LINK)
  400. avmcs_detach(link);
  401.     
  402. } /* avmcs_release */
  403. /*======================================================================
  404.     The card status event handler.  Mostly, this schedules other
  405.     stuff to run after an event is received.  A CARD_REMOVAL event
  406.     also sets some flags to discourage the net drivers from trying
  407.     to talk to the card any more.
  408.     When a CARD_REMOVAL event is received, we immediately set a flag
  409.     to block future accesses to this device.  All the functions that
  410.     actually access the device should check this flag to make sure
  411.     the card is still present.
  412.     
  413. ======================================================================*/
  414. static int avmcs_event(event_t event, int priority,
  415.   event_callback_args_t *args)
  416. {
  417.     dev_link_t *link = args->client_data;
  418.     switch (event) {
  419.     case CS_EVENT_CARD_REMOVAL:
  420. link->state &= ~DEV_PRESENT;
  421. if (link->state & DEV_CONFIG) {
  422.     link->release.expires = jiffies + (HZ/20);
  423.     add_timer(&link->release);
  424. }
  425. break;
  426.     case CS_EVENT_CARD_INSERTION:
  427. link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  428. avmcs_config(link);
  429. break;
  430.     case CS_EVENT_PM_SUSPEND:
  431. link->state |= DEV_SUSPEND;
  432. /* Fall through... */
  433.     case CS_EVENT_RESET_PHYSICAL:
  434. if (link->state & DEV_CONFIG)
  435.     CardServices(ReleaseConfiguration, link->handle);
  436. break;
  437.     case CS_EVENT_PM_RESUME:
  438. link->state &= ~DEV_SUSPEND;
  439. /* Fall through... */
  440.     case CS_EVENT_CARD_RESET:
  441. if (link->state & DEV_CONFIG)
  442.     CardServices(RequestConfiguration, link->handle, &link->conf);
  443. break;
  444.     }
  445.     return 0;
  446. } /* avmcs_event */
  447. /*====================================================================*/
  448. static int __init avmcs_init(void)
  449. {
  450.     servinfo_t serv;
  451.     CardServices(GetCardServicesInfo, &serv);
  452.     if (serv.Revision != CS_RELEASE_CODE) {
  453. printk(KERN_NOTICE "avm_cs: Card Services release "
  454.        "does not match!n");
  455. return -1;
  456.     }
  457.     register_pccard_driver(&dev_info, &avmcs_attach, &avmcs_detach);
  458.     return 0;
  459. }
  460. static void __exit avmcs_exit(void)
  461. {
  462.     unregister_pccard_driver(&dev_info);
  463.     while (dev_list != NULL) {
  464. if (dev_list->state & DEV_CONFIG)
  465.     avmcs_release((u_long)dev_list);
  466. avmcs_detach(dev_list);
  467.     }
  468. }
  469. module_init(avmcs_init);
  470. module_exit(avmcs_exit);