ide-pnp.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * This file provides autodetection for ISA PnP IDE interfaces.
  3. * It was tested with "ESS ES1868 Plug and Play AudioDrive" IDE interface.
  4. *
  5. * Copyright (C) 2000 Andrey Panin <pazke@donpac.ru>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2, or (at your option)
  10. * any later version.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * (for example /usr/src/linux/COPYING); if not, write to the Free
  14. * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  15. */
  16. #include <linux/init.h>
  17. #include <linux/pnp.h>
  18. #include <linux/ide.h>
  19. #include <linux/module.h>
  20. #define DRV_NAME "ide-pnp"
  21. /* Add your devices here :)) */
  22. static struct pnp_device_id idepnp_devices[] = {
  23. /* Generic ESDI/IDE/ATA compatible hard disk controller */
  24. {.id = "PNP0600", .driver_data = 0},
  25. {.id = ""}
  26. };
  27. static const struct ide_port_info ide_pnp_port_info = {
  28. .host_flags = IDE_HFLAG_NO_DMA,
  29. .chipset = ide_generic,
  30. };
  31. static int idepnp_probe(struct pnp_dev *dev, const struct pnp_device_id *dev_id)
  32. {
  33. struct ide_host *host;
  34. unsigned long base, ctl;
  35. int rc;
  36. struct ide_hw hw, *hws[] = { &hw };
  37. printk(KERN_INFO DRV_NAME ": generic PnP IDE interface\n");
  38. if (!(pnp_port_valid(dev, 0) && pnp_port_valid(dev, 1) && pnp_irq_valid(dev, 0)))
  39. return -1;
  40. base = pnp_port_start(dev, 0);
  41. ctl = pnp_port_start(dev, 1);
  42. if (!request_region(base, 8, DRV_NAME)) {
  43. printk(KERN_ERR "%s: I/O resource 0x%lX-0x%lX not free.\n",
  44. DRV_NAME, base, base + 7);
  45. return -EBUSY;
  46. }
  47. if (!request_region(ctl, 1, DRV_NAME)) {
  48. printk(KERN_ERR "%s: I/O resource 0x%lX not free.\n",
  49. DRV_NAME, ctl);
  50. release_region(base, 8);
  51. return -EBUSY;
  52. }
  53. memset(&hw, 0, sizeof(hw));
  54. ide_std_init_ports(&hw, base, ctl);
  55. hw.irq = pnp_irq(dev, 0);
  56. rc = ide_host_add(&ide_pnp_port_info, hws, 1, &host);
  57. if (rc)
  58. goto out;
  59. pnp_set_drvdata(dev, host);
  60. return 0;
  61. out:
  62. release_region(ctl, 1);
  63. release_region(base, 8);
  64. return rc;
  65. }
  66. static void idepnp_remove(struct pnp_dev *dev)
  67. {
  68. struct ide_host *host = pnp_get_drvdata(dev);
  69. ide_host_remove(host);
  70. release_region(pnp_port_start(dev, 1), 1);
  71. release_region(pnp_port_start(dev, 0), 8);
  72. }
  73. static struct pnp_driver idepnp_driver = {
  74. .name = "ide",
  75. .id_table = idepnp_devices,
  76. .probe = idepnp_probe,
  77. .remove = idepnp_remove,
  78. };
  79. module_pnp_driver(idepnp_driver);
  80. MODULE_LICENSE("GPL");