generic.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
  3. * Portions (C) Copyright 2002 Red Hat Inc <alan@redhat.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2, or (at your option) any
  8. * later version.
  9. *
  10. * This program is distributed in the hope that it will be useful, but
  11. * WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * General Public License for more details.
  14. *
  15. * For the avoidance of doubt the "preferred form" of this code is one which
  16. * is in an open non patent encumbered format. Where cryptographic key signing
  17. * forms part of the process of creating an executable the information
  18. * including keys needed to generate an equivalently functional executable
  19. * are deemed to be part of the source code.
  20. */
  21. #include <linux/types.h>
  22. #include <linux/module.h>
  23. #include <linux/kernel.h>
  24. #include <linux/hdreg.h>
  25. #include <linux/pci.h>
  26. #include <linux/ide.h>
  27. #include <linux/init.h>
  28. #define DRV_NAME "ide_pci_generic"
  29. static int ide_generic_all; /* Set to claim all devices */
  30. module_param_named(all_generic_ide, ide_generic_all, bool, 0444);
  31. MODULE_PARM_DESC(all_generic_ide, "IDE generic will claim all unknown PCI IDE storage controllers.");
  32. #define IDE_HFLAGS_UMC (IDE_HFLAG_NO_DMA | IDE_HFLAG_FORCE_LEGACY_IRQS)
  33. #define DECLARE_GENERIC_PCI_DEV(extra_flags) \
  34. { \
  35. .name = DRV_NAME, \
  36. .host_flags = IDE_HFLAG_TRUST_BIOS_FOR_DMA | \
  37. extra_flags, \
  38. .swdma_mask = ATA_SWDMA2, \
  39. .mwdma_mask = ATA_MWDMA2, \
  40. .udma_mask = ATA_UDMA6, \
  41. }
  42. static const struct ide_port_info generic_chipsets[] __devinitdata = {
  43. /* 0: Unknown */
  44. DECLARE_GENERIC_PCI_DEV(0),
  45. { /* 1: NS87410 */
  46. .name = DRV_NAME,
  47. .enablebits = { {0x43, 0x08, 0x08}, {0x47, 0x08, 0x08} },
  48. .host_flags = IDE_HFLAG_TRUST_BIOS_FOR_DMA,
  49. .swdma_mask = ATA_SWDMA2,
  50. .mwdma_mask = ATA_MWDMA2,
  51. .udma_mask = ATA_UDMA6,
  52. },
  53. /* 2: SAMURAI / HT6565 / HINT_IDE */
  54. DECLARE_GENERIC_PCI_DEV(0),
  55. /* 3: UM8673F / UM8886A / UM8886BF */
  56. DECLARE_GENERIC_PCI_DEV(IDE_HFLAGS_UMC),
  57. /* 4: VIA_IDE / OPTI621V / Piccolo010{2,3,5} */
  58. DECLARE_GENERIC_PCI_DEV(IDE_HFLAG_NO_AUTODMA),
  59. { /* 5: VIA8237SATA */
  60. .name = DRV_NAME,
  61. .host_flags = IDE_HFLAG_TRUST_BIOS_FOR_DMA |
  62. IDE_HFLAG_OFF_BOARD,
  63. .swdma_mask = ATA_SWDMA2,
  64. .mwdma_mask = ATA_MWDMA2,
  65. .udma_mask = ATA_UDMA6,
  66. },
  67. { /* 6: Revolution */
  68. .name = DRV_NAME,
  69. .host_flags = IDE_HFLAG_CLEAR_SIMPLEX |
  70. IDE_HFLAG_TRUST_BIOS_FOR_DMA |
  71. IDE_HFLAG_OFF_BOARD,
  72. .swdma_mask = ATA_SWDMA2,
  73. .mwdma_mask = ATA_MWDMA2,
  74. .udma_mask = ATA_UDMA6,
  75. }
  76. };
  77. /**
  78. * generic_init_one - called when a PIIX is found
  79. * @dev: the generic device
  80. * @id: the matching pci id
  81. *
  82. * Called when the PCI registration layer (or the IDE initialization)
  83. * finds a device matching our IDE device tables.
  84. */
  85. static int __devinit generic_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  86. {
  87. const struct ide_port_info *d = &generic_chipsets[id->driver_data];
  88. int ret = -ENODEV;
  89. /* Don't use the generic entry unless instructed to do so */
  90. if (id->driver_data == 0 && ide_generic_all == 0)
  91. goto out;
  92. switch (dev->vendor) {
  93. case PCI_VENDOR_ID_UMC:
  94. if (dev->device == PCI_DEVICE_ID_UMC_UM8886A &&
  95. !(PCI_FUNC(dev->devfn) & 1))
  96. goto out; /* UM8886A/BF pair */
  97. break;
  98. case PCI_VENDOR_ID_OPTI:
  99. if (dev->device == PCI_DEVICE_ID_OPTI_82C558 &&
  100. !(PCI_FUNC(dev->devfn) & 1))
  101. goto out;
  102. break;
  103. case PCI_VENDOR_ID_JMICRON:
  104. if (dev->device != PCI_DEVICE_ID_JMICRON_JMB368 &&
  105. PCI_FUNC(dev->devfn) != 1)
  106. goto out;
  107. break;
  108. case PCI_VENDOR_ID_NS:
  109. if (dev->device == PCI_DEVICE_ID_NS_87410 &&
  110. (dev->class >> 8) != PCI_CLASS_STORAGE_IDE)
  111. goto out;
  112. break;
  113. }
  114. if (dev->vendor != PCI_VENDOR_ID_JMICRON) {
  115. u16 command;
  116. pci_read_config_word(dev, PCI_COMMAND, &command);
  117. if (!(command & PCI_COMMAND_IO)) {
  118. printk(KERN_INFO "%s %s: skipping disabled "
  119. "controller\n", d->name, pci_name(dev));
  120. goto out;
  121. }
  122. }
  123. ret = ide_pci_init_one(dev, d, NULL);
  124. out:
  125. return ret;
  126. }
  127. static const struct pci_device_id generic_pci_tbl[] = {
  128. { PCI_VDEVICE(NS, PCI_DEVICE_ID_NS_87410), 1 },
  129. { PCI_VDEVICE(PCTECH, PCI_DEVICE_ID_PCTECH_SAMURAI_IDE), 2 },
  130. { PCI_VDEVICE(HOLTEK, PCI_DEVICE_ID_HOLTEK_6565), 2 },
  131. { PCI_VDEVICE(UMC, PCI_DEVICE_ID_UMC_UM8673F), 3 },
  132. { PCI_VDEVICE(UMC, PCI_DEVICE_ID_UMC_UM8886A), 3 },
  133. { PCI_VDEVICE(UMC, PCI_DEVICE_ID_UMC_UM8886BF), 3 },
  134. { PCI_VDEVICE(HINT, PCI_DEVICE_ID_HINT_VXPROII_IDE), 2 },
  135. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_82C561), 4 },
  136. { PCI_VDEVICE(OPTI, PCI_DEVICE_ID_OPTI_82C558), 4 },
  137. #ifdef CONFIG_BLK_DEV_IDE_SATA
  138. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_8237_SATA), 5 },
  139. #endif
  140. { PCI_VDEVICE(TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO), 4 },
  141. { PCI_VDEVICE(TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO_1), 4 },
  142. { PCI_VDEVICE(TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO_2), 4 },
  143. { PCI_VDEVICE(NETCELL, PCI_DEVICE_ID_REVOLUTION), 6 },
  144. /*
  145. * Must come last. If you add entries adjust
  146. * this table and generic_chipsets[] appropriately.
  147. */
  148. { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE << 8, 0xFFFFFF00UL, 0 },
  149. { 0, },
  150. };
  151. MODULE_DEVICE_TABLE(pci, generic_pci_tbl);
  152. static struct pci_driver driver = {
  153. .name = "PCI_IDE",
  154. .id_table = generic_pci_tbl,
  155. .probe = generic_init_one,
  156. .remove = ide_pci_remove,
  157. };
  158. static int __init generic_ide_init(void)
  159. {
  160. return ide_pci_register_driver(&driver);
  161. }
  162. static void __exit generic_ide_exit(void)
  163. {
  164. pci_unregister_driver(&driver);
  165. }
  166. module_init(generic_ide_init);
  167. module_exit(generic_ide_exit);
  168. MODULE_AUTHOR("Andre Hedrick");
  169. MODULE_DESCRIPTION("PCI driver module for generic PCI IDE");
  170. MODULE_LICENSE("GPL");