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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     A driver for PCMCIA parallel port adapters
  3.     (specifically, for the Quatech SPP-100 EPP card: other cards will
  4.     probably require driver tweaks)
  5.     
  6.     parport_cs.c 1.24 2001/10/13 14:04:05
  7.     The contents of this file are subject to the Mozilla Public
  8.     License Version 1.1 (the "License"); you may not use this file
  9.     except in compliance with the License. You may obtain a copy of
  10.     the License at http://www.mozilla.org/MPL/
  11.     Software distributed under the License is distributed on an "AS
  12.     IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.     implied. See the License for the specific language governing
  14.     rights and limitations under the License.
  15.     The initial developer of the original code is David A. Hinds
  16.     <dahinds@users.sourceforge.net>.  Portions created by David A. Hinds
  17.     are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
  18.     Alternatively, the contents of this file may be used under the
  19.     terms of the GNU General Public License version 2 (the "GPL"), in
  20.     which case the provisions of the GPL are applicable instead of the
  21.     above.  If you wish to allow the use of your version of this file
  22.     only under the terms of the GPL and not to allow others to use
  23.     your version of this file under the MPL, indicate your decision
  24.     by deleting the provisions above and replace them with the notice
  25.     and other provisions required by the GPL.  If you do not delete
  26.     the provisions above, a recipient may use your version of this
  27.     file under either the MPL or the GPL.
  28.     
  29. ======================================================================*/
  30. #include <linux/kernel.h>
  31. #include <linux/version.h>
  32. #include <linux/module.h>
  33. #include <linux/init.h>
  34. #include <linux/sched.h>
  35. #include <linux/ptrace.h>
  36. #include <linux/slab.h>
  37. #include <linux/string.h>
  38. #include <linux/timer.h>
  39. #include <linux/ioport.h>
  40. #include <linux/parport.h>
  41. #include <linux/parport_pc.h>
  42. #include <pcmcia/version.h>
  43. #include <pcmcia/cs_types.h>
  44. #include <pcmcia/cs.h>
  45. #include <pcmcia/cistpl.h>
  46. #include <pcmcia/ds.h>
  47. #include <pcmcia/cisreg.h>
  48. #include <pcmcia/ciscode.h>
  49. /*====================================================================*/
  50. /* Module parameters */
  51. MODULE_AUTHOR("David Hinds <dahinds@users.sourceforge.net>");
  52. MODULE_DESCRIPTION("PCMCIA parallel port card driver");
  53. MODULE_LICENSE("Dual MPL/GPL");
  54. #define INT_MODULE_PARM(n, v) static int n = v; MODULE_PARM(n, "i")
  55. /* Bit map of interrupts to choose from */
  56. INT_MODULE_PARM(irq_mask, 0xdeb8);
  57. static int irq_list[4] = { -1 };
  58. MODULE_PARM(irq_list, "1-4i");
  59. INT_MODULE_PARM(epp_mode, 1);
  60. #ifdef PCMCIA_DEBUG
  61. INT_MODULE_PARM(pc_debug, PCMCIA_DEBUG);
  62. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  63. static char *version =
  64. "parport_cs.c 1.24 2001/10/13 14:04:05 (David Hinds)";
  65. #else
  66. #define DEBUG(n, args...)
  67. #endif
  68. /*====================================================================*/
  69. #define FORCE_EPP_MODE 0x08
  70. typedef struct parport_info_t {
  71.     dev_link_t link;
  72.     int ndev;
  73.     dev_node_t node;
  74.     struct parport *port;
  75. } parport_info_t;
  76. static dev_link_t *parport_attach(void);
  77. static void parport_detach(dev_link_t *);
  78. static void parport_config(dev_link_t *link);
  79. static void parport_cs_release(u_long arg);
  80. static int parport_event(event_t event, int priority,
  81.  event_callback_args_t *args);
  82. static dev_info_t dev_info = "parport_cs";
  83. static dev_link_t *dev_list = NULL;
  84. /*====================================================================*/
  85. static void cs_error(client_handle_t handle, int func, int ret)
  86. {
  87.     error_info_t err = { func, ret };
  88.     CardServices(ReportError, handle, &err);
  89. }
  90. /*======================================================================
  91.     parport_attach() creates an "instance" of the driver, allocating
  92.     local data structures for one device.  The device is registered
  93.     with Card Services.
  94. ======================================================================*/
  95. static dev_link_t *parport_attach(void)
  96. {
  97.     parport_info_t *info;
  98.     dev_link_t *link;
  99.     client_reg_t client_reg;
  100.     int i, ret;
  101.     
  102.     DEBUG(0, "parport_attach()n");
  103.     /* Create new parport device */
  104.     info = kmalloc(sizeof(*info), GFP_KERNEL);
  105.     if (!info) return NULL;
  106.     memset(info, 0, sizeof(*info));
  107.     link = &info->link; link->priv = info;
  108.     link->release.function = &parport_cs_release;
  109.     link->release.data = (u_long)link;
  110.     link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  111.     link->io.Attributes2 = IO_DATA_PATH_WIDTH_8;
  112.     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
  113.     link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  114.     if (irq_list[0] == -1)
  115. link->irq.IRQInfo2 = irq_mask;
  116.     else
  117. for (i = 0; i < 4; i++)
  118.     link->irq.IRQInfo2 |= 1 << irq_list[i];
  119.     link->conf.Attributes = CONF_ENABLE_IRQ;
  120.     link->conf.Vcc = 50;
  121.     link->conf.IntType = INT_MEMORY_AND_IO;
  122.     
  123.     /* Register with Card Services */
  124.     link->next = dev_list;
  125.     dev_list = link;
  126.     client_reg.dev_info = &dev_info;
  127.     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  128.     client_reg.EventMask =
  129. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  130. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  131. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  132.     client_reg.event_handler = &parport_event;
  133.     client_reg.Version = 0x0210;
  134.     client_reg.event_callback_args.client_data = link;
  135.     ret = CardServices(RegisterClient, &link->handle, &client_reg);
  136.     if (ret != CS_SUCCESS) {
  137. cs_error(link->handle, RegisterClient, ret);
  138. parport_detach(link);
  139. return NULL;
  140.     }
  141.     
  142.     return link;
  143. } /* parport_attach */
  144. /*======================================================================
  145.     This deletes a driver "instance".  The device is de-registered
  146.     with Card Services.  If it has been released, all local data
  147.     structures are freed.  Otherwise, the structures will be freed
  148.     when the device is released.
  149. ======================================================================*/
  150. static void parport_detach(dev_link_t *link)
  151. {
  152.     dev_link_t **linkp;
  153.     int ret;
  154.     DEBUG(0, "parport_detach(0x%p)n", link);
  155.     
  156.     /* Locate device structure */
  157.     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  158. if (*linkp == link) break;
  159.     if (*linkp == NULL)
  160. return;
  161.     del_timer(&link->release);
  162.     if (link->state & DEV_CONFIG)
  163. parport_cs_release((u_long)link);
  164.     
  165.     if (link->handle) {
  166. ret = CardServices(DeregisterClient, link->handle);
  167. if (ret != CS_SUCCESS)
  168.     cs_error(link->handle, DeregisterClient, ret);
  169.     }
  170.     
  171.     /* Unlink, free device structure */
  172.     *linkp = link->next;
  173.     kfree(link->priv);
  174.     
  175. } /* parport_detach */
  176. /*======================================================================
  177.     parport_config() is scheduled to run after a CARD_INSERTION event
  178.     is received, to configure the PCMCIA socket, and to make the
  179.     parport device available to the system.
  180. ======================================================================*/
  181. #define CS_CHECK(fn, args...) 
  182. while ((last_ret=CardServices(last_fn=(fn), args))!=0) goto cs_failed
  183. #define CFG_CHECK(fn, args...) 
  184. if (CardServices(fn, args) != 0) goto next_entry
  185. static struct { u_int flag; char *name; } mode[] = {
  186.     { PARPORT_MODE_TRISTATE, "PS2" },
  187.     { PARPORT_MODE_EPP, "EPP" },
  188.     { PARPORT_MODE_ECP, "ECP" },
  189. };
  190. void parport_config(dev_link_t *link)
  191. {
  192.     client_handle_t handle = link->handle;
  193.     parport_info_t *info = link->priv;
  194.     tuple_t tuple;
  195.     u_short buf[128];
  196.     cisparse_t parse;
  197.     config_info_t conf;
  198.     cistpl_cftable_entry_t *cfg = &parse.cftable_entry;
  199.     cistpl_cftable_entry_t dflt = { 0 };
  200.     struct parport *p;
  201.     int i, last_ret, last_fn;
  202.     
  203.     DEBUG(0, "parport_config(0x%p)n", link);
  204.     
  205.     tuple.TupleData = (cisdata_t *)buf;
  206.     tuple.TupleOffset = 0; tuple.TupleDataMax = 255;
  207.     tuple.Attributes = 0;
  208.     tuple.DesiredTuple = CISTPL_CONFIG;
  209.     CS_CHECK(GetFirstTuple, handle, &tuple);
  210.     CS_CHECK(GetTupleData, handle, &tuple);
  211.     CS_CHECK(ParseTuple, handle, &tuple, &parse);
  212.     link->conf.ConfigBase = parse.config.base;
  213.     link->conf.Present = parse.config.rmask[0];
  214.     
  215.     /* Configure card */
  216.     link->state |= DEV_CONFIG;
  217.     /* Not sure if this is right... look up the current Vcc */
  218.     CS_CHECK(GetConfigurationInfo, handle, &conf);
  219.     
  220.     tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  221.     tuple.Attributes = 0;
  222.     CS_CHECK(GetFirstTuple, handle, &tuple);
  223.     while (1) {
  224. CFG_CHECK(GetTupleData, handle, &tuple);
  225. CFG_CHECK(ParseTuple, handle, &tuple, &parse);
  226. if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
  227.     cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
  228.     link->conf.ConfigIndex = cfg->index;
  229.     if (epp_mode)
  230. link->conf.ConfigIndex |= FORCE_EPP_MODE;
  231.     link->io.BasePort1 = io->win[0].base;
  232.     link->io.NumPorts1 = io->win[0].len;
  233.     link->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
  234.     if (io->nwin == 2) {
  235. link->io.BasePort2 = io->win[1].base;
  236. link->io.NumPorts2 = io->win[1].len;
  237.     }
  238.     CFG_CHECK(RequestIO, link->handle, &link->io);
  239.     /* If we've got this far, we're done */
  240.     break;
  241. }
  242.     next_entry:
  243. if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg;
  244. CS_CHECK(GetNextTuple, handle, &tuple);
  245.     }
  246.     
  247.     CS_CHECK(RequestIRQ, handle, &link->irq);
  248.     CS_CHECK(RequestConfiguration, handle, &link->conf);
  249.     p = parport_pc_probe_port(link->io.BasePort1, link->io.BasePort2,
  250.       link->irq.AssignedIRQ, PARPORT_DMA_NONE,
  251.       NULL);
  252.     if (p == NULL) {
  253. printk(KERN_NOTICE "parport_cs: parport_pc_probe_port() at "
  254.        "0x%3x, irq %u failedn", link->io.BasePort1,
  255.        link->irq.AssignedIRQ);
  256. goto failed;
  257.     }
  258.     p->modes |= PARPORT_MODE_PCSPP;
  259.     if (epp_mode)
  260. p->modes |= PARPORT_MODE_TRISTATE | PARPORT_MODE_EPP;
  261.     info->ndev = 1;
  262.     info->node.major = LP_MAJOR;
  263.     info->node.minor = p->number;
  264.     info->port = p;
  265.     strcpy(info->node.dev_name, p->name);
  266.     link->dev = &info->node;
  267.     printk(KERN_INFO "%s: PC-style PCMCIA at %#x", p->name,
  268.    link->io.BasePort1);
  269.     if (link->io.NumPorts2)
  270. printk(" & %#x", link->io.BasePort2);
  271.     printk(", irq %u [SPP", link->irq.AssignedIRQ);
  272.     for (i = 0; i < 5; i++)
  273. if (p->modes & mode[i].flag) printk(",%s", mode[i].name);
  274.     printk("]n");
  275.     
  276.     link->state &= ~DEV_CONFIG_PENDING;
  277.     return;
  278.     
  279. cs_failed:
  280.     cs_error(link->handle, last_fn, last_ret);
  281. failed:
  282.     parport_cs_release((u_long)link);
  283. } /* parport_config */
  284. /*======================================================================
  285.     After a card is removed, parport_cs_release() will unregister the
  286.     device, and release the PCMCIA configuration.  If the device is
  287.     still open, this will be postponed until it is closed.
  288.     
  289. ======================================================================*/
  290. void parport_cs_release(u_long arg)
  291. {
  292.     dev_link_t *link = (dev_link_t *)arg;
  293.     parport_info_t *info = link->priv;
  294.     
  295.     DEBUG(0, "parport_release(0x%p)n", link);
  296.     if (info->ndev) {
  297. struct parport *p = info->port;
  298. parport_proc_unregister(p);
  299. kfree(p->private_data);
  300. parport_unregister_port(p);
  301.     }
  302.     info->ndev = 0;
  303.     link->dev = NULL;
  304.     
  305.     CardServices(ReleaseConfiguration, link->handle);
  306.     CardServices(ReleaseIO, link->handle, &link->io);
  307.     CardServices(ReleaseIRQ, link->handle, &link->irq);
  308.     
  309.     link->state &= ~DEV_CONFIG;
  310. } /* parport_cs_release */
  311. /*======================================================================
  312.     The card status event handler.  Mostly, this schedules other
  313.     stuff to run after an event is received.
  314.     
  315. ======================================================================*/
  316. int parport_event(event_t event, int priority,
  317.   event_callback_args_t *args)
  318. {
  319.     dev_link_t *link = args->client_data;
  320.     DEBUG(1, "parport_event(0x%06x)n", event);
  321.     
  322.     switch (event) {
  323.     case CS_EVENT_CARD_REMOVAL:
  324. link->state &= ~DEV_PRESENT;
  325. if (link->state & DEV_CONFIG)
  326.     mod_timer(&link->release, jiffies + HZ/20);
  327. break;
  328.     case CS_EVENT_CARD_INSERTION:
  329. link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  330. parport_config(link);
  331. break;
  332.     case CS_EVENT_PM_SUSPEND:
  333. link->state |= DEV_SUSPEND;
  334. /* Fall through... */
  335.     case CS_EVENT_RESET_PHYSICAL:
  336. if (link->state & DEV_CONFIG)
  337.     CardServices(ReleaseConfiguration, link->handle);
  338. break;
  339.     case CS_EVENT_PM_RESUME:
  340. link->state &= ~DEV_SUSPEND;
  341. /* Fall through... */
  342.     case CS_EVENT_CARD_RESET:
  343. if (DEV_OK(link))
  344.     CardServices(RequestConfiguration, link->handle, &link->conf);
  345. break;
  346.     }
  347.     return 0;
  348. } /* parport_event */
  349. /*====================================================================*/
  350. static int __init init_parport_cs(void)
  351. {
  352.     servinfo_t serv;
  353.     DEBUG(0, "%sn", version);
  354.     CardServices(GetCardServicesInfo, &serv);
  355.     if (serv.Revision != CS_RELEASE_CODE) {
  356. printk(KERN_NOTICE "parport_cs: Card Services release "
  357.        "does not match!n");
  358. return -1;
  359.     }
  360.     register_pccard_driver(&dev_info, &parport_attach, &parport_detach);
  361.     return 0;
  362. }
  363. static void __exit exit_parport_cs(void)
  364. {
  365.     DEBUG(0, "parport_cs: unloadingn");
  366.     unregister_pccard_driver(&dev_info);
  367.     while (dev_list != NULL)
  368. parport_detach(dev_list);
  369. }
  370. module_init(init_parport_cs);
  371. module_exit(exit_parport_cs);