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

Linux/Unix编程

开发平台:

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