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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*======================================================================
  2.     A driver for PCMCIA IDE/ATA disk cards
  3.     ide_cs.c 1.26 1999/11/16 02:10:49
  4.     The contents of this file are subject to the Mozilla Public
  5.     License Version 1.1 (the "License"); you may not use this file
  6.     except in compliance with the License. You may obtain a copy of
  7.     the License at http://www.mozilla.org/MPL/
  8.     Software distributed under the License is distributed on an "AS
  9.     IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.     implied. See the License for the specific language governing
  11.     rights and limitations under the License.
  12.     The initial developer of the original code is David A. Hinds
  13.     <dhinds@pcmcia.sourceforge.org>.  Portions created by David A. Hinds
  14.     are Copyright (C) 1999 David A. Hinds.  All Rights Reserved.
  15.     Alternatively, the contents of this file may be used under the
  16.     terms of the GNU General Public License version 2 (the "GPL"), in which
  17.     case the provisions of the GPL are applicable instead of the
  18.     above.  If you wish to allow the use of your version of this file
  19.     only under the terms of the GPL and not to allow others to use
  20.     your version of this file under the MPL, indicate your decision
  21.     by deleting the provisions above and replace them with the notice
  22.     and other provisions required by the GPL.  If you do not delete
  23.     the provisions above, a recipient may use your version of this
  24.     file under either the MPL or the GPL.
  25.     
  26. ======================================================================*/
  27. #include <linux/module.h>
  28. #include <linux/kernel.h>
  29. #include <linux/init.h>
  30. #include <linux/sched.h>
  31. #include <linux/ptrace.h>
  32. #include <linux/slab.h>
  33. #include <linux/string.h>
  34. #include <linux/timer.h>
  35. #include <linux/ioport.h>
  36. #include <linux/hdreg.h>
  37. #include <linux/major.h>
  38. #include <asm/io.h>
  39. #include <asm/system.h>
  40. #include <pcmcia/version.h>
  41. #include <pcmcia/cs_types.h>
  42. #include <pcmcia/cs.h>
  43. #include <pcmcia/cistpl.h>
  44. #include <pcmcia/ds.h>
  45. #include <pcmcia/cisreg.h>
  46. #ifdef PCMCIA_DEBUG
  47. static int pc_debug = PCMCIA_DEBUG;
  48. MODULE_PARM(pc_debug, "i");
  49. #define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
  50. static char *version =
  51. "ide_cs.c 1.26 1999/11/16 02:10:49 (David Hinds)";
  52. #else
  53. #define DEBUG(n, args...)
  54. #endif
  55. /*====================================================================*/
  56. /* Parameters that can be set with 'insmod' */
  57. /* Bit map of interrupts to choose from */
  58. static u_int irq_mask = 0xdeb8;
  59. static int irq_list[4] = { -1 };
  60. MODULE_PARM(irq_mask, "i");
  61. MODULE_PARM(irq_list, "1-4i");
  62. MODULE_LICENSE("GPL");
  63. /*====================================================================*/
  64. static const char ide_major[] = {
  65.     IDE0_MAJOR, IDE1_MAJOR, IDE2_MAJOR, IDE3_MAJOR,
  66. #ifdef IDE4_MAJOR
  67.     IDE4_MAJOR, IDE5_MAJOR
  68. #endif
  69. };
  70. typedef struct ide_info_t {
  71.     dev_link_t link;
  72.     int ndev;
  73.     dev_node_t node;
  74.     int hd;
  75. } ide_info_t;
  76. static void ide_config(dev_link_t *link);
  77. static void ide_release(u_long arg);
  78. static int ide_event(event_t event, int priority,
  79.      event_callback_args_t *args);
  80. static dev_info_t dev_info = "ide-cs";
  81. static dev_link_t *ide_attach(void);
  82. static void ide_detach(dev_link_t *);
  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.     ide_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 *ide_attach(void)
  96. {
  97.     ide_info_t *info;
  98.     dev_link_t *link;
  99.     client_reg_t client_reg;
  100.     int i, ret;
  101.     
  102.     DEBUG(0, "ide_attach()n");
  103.     /* Create new ide 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 = &ide_release;
  109.     link->release.data = (u_long)link;
  110.     link->io.Attributes1 = IO_DATA_PATH_WIDTH_AUTO;
  111.     link->io.Attributes2 = IO_DATA_PATH_WIDTH_8;
  112.     link->io.IOAddrLines = 3;
  113.     link->irq.Attributes = IRQ_TYPE_EXCLUSIVE;
  114.     link->irq.IRQInfo1 = IRQ_INFO2_VALID|IRQ_LEVEL_ID;
  115.     if (irq_list[0] == -1)
  116. link->irq.IRQInfo2 = irq_mask;
  117.     else
  118. for (i = 0; i < 4; i++)
  119.     link->irq.IRQInfo2 |= 1 << irq_list[i];
  120.     link->conf.Attributes = CONF_ENABLE_IRQ;
  121.     link->conf.Vcc = 50;
  122.     link->conf.IntType = INT_MEMORY_AND_IO;
  123.     
  124.     /* Register with Card Services */
  125.     link->next = dev_list;
  126.     dev_list = link;
  127.     client_reg.dev_info = &dev_info;
  128.     client_reg.Attributes = INFO_IO_CLIENT | INFO_CARD_SHARE;
  129.     client_reg.EventMask =
  130. CS_EVENT_CARD_INSERTION | CS_EVENT_CARD_REMOVAL |
  131. CS_EVENT_RESET_PHYSICAL | CS_EVENT_CARD_RESET |
  132. CS_EVENT_PM_SUSPEND | CS_EVENT_PM_RESUME;
  133.     client_reg.event_handler = &ide_event;
  134.     client_reg.Version = 0x0210;
  135.     client_reg.event_callback_args.client_data = link;
  136.     ret = CardServices(RegisterClient, &link->handle, &client_reg);
  137.     if (ret != CS_SUCCESS) {
  138. cs_error(link->handle, RegisterClient, ret);
  139. ide_detach(link);
  140. return NULL;
  141.     }
  142.     
  143.     return link;
  144. } /* ide_attach */
  145. /*======================================================================
  146.     This deletes a driver "instance".  The device is de-registered
  147.     with Card Services.  If it has been released, all local data
  148.     structures are freed.  Otherwise, the structures will be freed
  149.     when the device is released.
  150. ======================================================================*/
  151. static void ide_detach(dev_link_t *link)
  152. {
  153.     dev_link_t **linkp;
  154.     int ret;
  155.     DEBUG(0, "ide_detach(0x%p)n", link);
  156.     
  157.     /* Locate device structure */
  158.     for (linkp = &dev_list; *linkp; linkp = &(*linkp)->next)
  159. if (*linkp == link) break;
  160.     if (*linkp == NULL)
  161. return;
  162.     del_timer(&link->release);
  163.     if (link->state & DEV_CONFIG)
  164. ide_release((u_long)link);
  165.     
  166.     if (link->handle) {
  167. ret = CardServices(DeregisterClient, link->handle);
  168. if (ret != CS_SUCCESS)
  169.     cs_error(link->handle, DeregisterClient, ret);
  170.     }
  171.     
  172.     /* Unlink, free device structure */
  173.     *linkp = link->next;
  174.     kfree(link->priv);
  175.     
  176. } /* ide_detach */
  177. /*======================================================================
  178.     ide_config() is scheduled to run after a CARD_INSERTION event
  179.     is received, to configure the PCMCIA socket, and to make the
  180.     ide device available to the system.
  181. ======================================================================*/
  182. #define CS_CHECK(fn, args...) 
  183. while ((last_ret=CardServices(last_fn=(fn), args))!=0) goto cs_failed
  184. #define CFG_CHECK(fn, args...) 
  185. if (CardServices(fn, args) != 0) goto next_entry
  186. void ide_config(dev_link_t *link)
  187. {
  188.     client_handle_t handle = link->handle;
  189.     ide_info_t *info = link->priv;
  190.     tuple_t tuple;
  191.     u_short buf[128];
  192.     cisparse_t parse;
  193.     config_info_t conf;
  194.     cistpl_cftable_entry_t *cfg = &parse.cftable_entry;
  195.     cistpl_cftable_entry_t dflt = { 0 };
  196.     int i, pass, last_ret, last_fn, hd=-1, io_base, ctl_base;
  197.     DEBUG(0, "ide_config(0x%p)n", link);
  198.     
  199.     tuple.TupleData = (cisdata_t *)buf;
  200.     tuple.TupleOffset = 0; tuple.TupleDataMax = 255;
  201.     tuple.Attributes = 0;
  202.     tuple.DesiredTuple = CISTPL_CONFIG;
  203.     CS_CHECK(GetFirstTuple, handle, &tuple);
  204.     CS_CHECK(GetTupleData, handle, &tuple);
  205.     CS_CHECK(ParseTuple, handle, &tuple, &parse);
  206.     link->conf.ConfigBase = parse.config.base;
  207.     link->conf.Present = parse.config.rmask[0];
  208.     
  209.     /* Configure card */
  210.     link->state |= DEV_CONFIG;
  211.     /* Not sure if this is right... look up the current Vcc */
  212.     CS_CHECK(GetConfigurationInfo, handle, &conf);
  213.     link->conf.Vcc = conf.Vcc;
  214.     
  215.     pass = io_base = ctl_base = 0;
  216.     tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
  217.     tuple.Attributes = 0;
  218.     CS_CHECK(GetFirstTuple, handle, &tuple);
  219.     while (1) {
  220. CFG_CHECK(GetTupleData, handle, &tuple);
  221. CFG_CHECK(ParseTuple, handle, &tuple, &parse);
  222. /* Check for matching Vcc, unless we're desperate */
  223. if (!pass) {
  224.     if (cfg->vcc.present & (1<<CISTPL_POWER_VNOM)) {
  225. if (conf.Vcc != cfg->vcc.param[CISTPL_POWER_VNOM]/10000)
  226.     goto next_entry;
  227.     } else if (dflt.vcc.present & (1<<CISTPL_POWER_VNOM)) {
  228. if (conf.Vcc != dflt.vcc.param[CISTPL_POWER_VNOM]/10000)
  229.     goto next_entry;
  230.     }
  231. }
  232. if (cfg->vpp1.present & (1<<CISTPL_POWER_VNOM))
  233.     link->conf.Vpp1 = link->conf.Vpp2 =
  234. cfg->vpp1.param[CISTPL_POWER_VNOM]/10000;
  235. else if (dflt.vpp1.present & (1<<CISTPL_POWER_VNOM))
  236.     link->conf.Vpp1 = link->conf.Vpp2 =
  237. dflt.vpp1.param[CISTPL_POWER_VNOM]/10000;
  238. if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
  239.     cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
  240.     link->conf.ConfigIndex = cfg->index;
  241.     link->io.BasePort1 = io->win[0].base;
  242.     link->io.IOAddrLines = io->flags & CISTPL_IO_LINES_MASK;
  243.     if (!(io->flags & CISTPL_IO_16BIT))
  244. link->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
  245.     if (io->nwin == 2) {
  246. link->io.NumPorts1 = 8;
  247. link->io.BasePort2 = io->win[1].base;
  248. link->io.NumPorts2 = 1;
  249. CFG_CHECK(RequestIO, link->handle, &link->io);
  250. io_base = link->io.BasePort1;
  251. ctl_base = link->io.BasePort2;
  252.     } else if ((io->nwin == 1) && (io->win[0].len >= 16)) {
  253. link->io.NumPorts1 = io->win[0].len;
  254. link->io.NumPorts2 = 0;
  255. CFG_CHECK(RequestIO, link->handle, &link->io);
  256. io_base = link->io.BasePort1;
  257. ctl_base = link->io.BasePort1+0x0e;
  258.     } else goto next_entry;
  259.     /* If we've got this far, we're done */
  260.     break;
  261. }
  262.     next_entry:
  263. if (cfg->flags & CISTPL_CFTABLE_DEFAULT) dflt = *cfg;
  264. if (pass) {
  265.     CS_CHECK(GetNextTuple, handle, &tuple);
  266. } else if (CardServices(GetNextTuple, handle, &tuple) != 0) {
  267.     CS_CHECK(GetFirstTuple, handle, &tuple);
  268.     memset(&dflt, 0, sizeof(dflt));
  269.     pass++;
  270. }
  271.     }
  272.     
  273.     CS_CHECK(RequestIRQ, handle, &link->irq);
  274.     CS_CHECK(RequestConfiguration, handle, &link->conf);
  275.     /* deal with brain dead IDE resource management */
  276.     release_region(link->io.BasePort1, link->io.NumPorts1);
  277.     if (link->io.NumPorts2)
  278. release_region(link->io.BasePort2, link->io.NumPorts2);
  279.     /* retry registration in case device is still spinning up */
  280.     for (i = 0; i < 10; i++) {
  281. hd = ide_register(io_base, ctl_base, link->irq.AssignedIRQ);
  282. if (hd >= 0) break;
  283. if (link->io.NumPorts1 == 0x20) {
  284.     hd = ide_register(io_base+0x10, ctl_base+0x10,
  285.       link->irq.AssignedIRQ);
  286.     if (hd >= 0) {
  287. io_base += 0x10; ctl_base += 0x10;
  288. break;
  289.     }
  290. }
  291. __set_current_state(TASK_UNINTERRUPTIBLE);
  292. schedule_timeout(HZ/10);
  293.     }
  294.     
  295.     if (hd < 0) {
  296. printk(KERN_NOTICE "ide_cs: ide_register() at 0x%03x & 0x%03x"
  297.        ", irq %u failedn", io_base, ctl_base,
  298.        link->irq.AssignedIRQ);
  299. goto failed;
  300.     }
  301.     MOD_INC_USE_COUNT;
  302.     info->ndev = 1;
  303.     sprintf(info->node.dev_name, "hd%c", 'a'+(hd*2));
  304.     info->node.major = ide_major[hd];
  305.     info->node.minor = 0;
  306.     info->hd = hd;
  307.     link->dev = &info->node;
  308.     printk(KERN_INFO "ide_cs: %s: Vcc = %d.%d, Vpp = %d.%dn",
  309.    info->node.dev_name, link->conf.Vcc/10, link->conf.Vcc%10,
  310.    link->conf.Vpp1/10, link->conf.Vpp1%10);
  311.     link->state &= ~DEV_CONFIG_PENDING;
  312.     return;
  313.     
  314. cs_failed:
  315.     cs_error(link->handle, last_fn, last_ret);
  316. failed:
  317.     ide_release((u_long)link);
  318. } /* ide_config */
  319. /*======================================================================
  320.     After a card is removed, ide_release() will unregister the net
  321.     device, and release the PCMCIA configuration.  If the device is
  322.     still open, this will be postponed until it is closed.
  323.     
  324. ======================================================================*/
  325. void ide_release(u_long arg)
  326. {
  327.     dev_link_t *link = (dev_link_t *)arg;
  328.     ide_info_t *info = link->priv;
  329.     
  330.     DEBUG(0, "ide_release(0x%p)n", link);
  331.     if (info->ndev) {
  332. ide_unregister(info->hd);
  333. MOD_DEC_USE_COUNT;
  334.     }
  335.     request_region(link->io.BasePort1, link->io.NumPorts1,"ide-cs");
  336.     if (link->io.NumPorts2)
  337. request_region(link->io.BasePort2, link->io.NumPorts2,"ide-cs");
  338.     
  339.     info->ndev = 0;
  340.     link->dev = NULL;
  341.     
  342.     CardServices(ReleaseConfiguration, link->handle);
  343.     CardServices(ReleaseIO, link->handle, &link->io);
  344.     CardServices(ReleaseIRQ, link->handle, &link->irq);
  345.     
  346.     link->state &= ~DEV_CONFIG;
  347. } /* ide_release */
  348. /*======================================================================
  349.     The card status event handler.  Mostly, this schedules other
  350.     stuff to run after an event is received.  A CARD_REMOVAL event
  351.     also sets some flags to discourage the ide drivers from
  352.     talking to the ports.
  353.     
  354. ======================================================================*/
  355. int ide_event(event_t event, int priority,
  356.       event_callback_args_t *args)
  357. {
  358.     dev_link_t *link = args->client_data;
  359.     DEBUG(1, "ide_event(0x%06x)n", event);
  360.     
  361.     switch (event) {
  362.     case CS_EVENT_CARD_REMOVAL:
  363. link->state &= ~DEV_PRESENT;
  364. if (link->state & DEV_CONFIG)
  365.     mod_timer(&link->release, jiffies + HZ/20);
  366. break;
  367.     case CS_EVENT_CARD_INSERTION:
  368. link->state |= DEV_PRESENT | DEV_CONFIG_PENDING;
  369. ide_config(link);
  370. break;
  371.     case CS_EVENT_PM_SUSPEND:
  372. link->state |= DEV_SUSPEND;
  373. /* Fall through... */
  374.     case CS_EVENT_RESET_PHYSICAL:
  375. if (link->state & DEV_CONFIG)
  376.     CardServices(ReleaseConfiguration, link->handle);
  377. break;
  378.     case CS_EVENT_PM_RESUME:
  379. link->state &= ~DEV_SUSPEND;
  380. /* Fall through... */
  381.     case CS_EVENT_CARD_RESET:
  382. if (DEV_OK(link))
  383.     CardServices(RequestConfiguration, link->handle, &link->conf);
  384. break;
  385.     }
  386.     return 0;
  387. } /* ide_event */
  388. /*====================================================================*/
  389. static int __init init_ide_cs(void)
  390. {
  391.     servinfo_t serv;
  392.     DEBUG(0, "%sn", version);
  393.     CardServices(GetCardServicesInfo, &serv);
  394.     if (serv.Revision != CS_RELEASE_CODE) {
  395. printk(KERN_NOTICE "ide_cs: Card Services release "
  396.        "does not match!n");
  397. return -1;
  398.     }
  399.     register_pccard_driver(&dev_info, &ide_attach, &ide_detach);
  400.     return 0;
  401. }
  402. static void __exit exit_ide_cs(void)
  403. {
  404.     DEBUG(0, "ide_cs: unloadingn");
  405.     unregister_pccard_driver(&dev_info);
  406.     while (dev_list != NULL)
  407. ide_detach(dev_list);
  408. }
  409. module_init(init_ide_cs);
  410. module_exit(exit_ide_cs);