generic.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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/delay.h>
  25. #include <linux/timer.h>
  26. #include <linux/mm.h>
  27. #include <linux/ioport.h>
  28. #include <linux/blkdev.h>
  29. #include <linux/hdreg.h>
  30. #include <linux/pci.h>
  31. #include <linux/ide.h>
  32. #include <linux/init.h>
  33. #include <asm/io.h>
  34. static int ide_generic_all; /* Set to claim all devices */
  35. /*
  36. * the module_param_named() was added for the modular case
  37. * the __setup() is left as compatibility for existing setups
  38. */
  39. #ifndef MODULE
  40. static int __init ide_generic_all_on(char *unused)
  41. {
  42. ide_generic_all = 1;
  43. printk(KERN_INFO "IDE generic will claim all unknown PCI IDE storage controllers.\n");
  44. return 1;
  45. }
  46. const __setup("all-generic-ide", ide_generic_all_on);
  47. #endif
  48. module_param_named(all_generic_ide, ide_generic_all, bool, 0444);
  49. MODULE_PARM_DESC(all_generic_ide, "IDE generic will claim all unknown PCI IDE storage controllers.");
  50. #define IDE_HFLAGS_UMC (IDE_HFLAG_NO_DMA | IDE_HFLAG_FORCE_LEGACY_IRQS)
  51. #define DECLARE_GENERIC_PCI_DEV(name_str, extra_flags) \
  52. { \
  53. .name = name_str, \
  54. .host_flags = IDE_HFLAG_TRUST_BIOS_FOR_DMA | \
  55. extra_flags | \
  56. IDE_HFLAG_BOOTABLE, \
  57. .swdma_mask = ATA_SWDMA2, \
  58. .mwdma_mask = ATA_MWDMA2, \
  59. .udma_mask = ATA_UDMA6, \
  60. }
  61. static const struct ide_port_info generic_chipsets[] __devinitdata = {
  62. /* 0 */ DECLARE_GENERIC_PCI_DEV("Unknown", 0),
  63. { /* 1 */
  64. .name = "NS87410",
  65. .enablebits = {{0x43,0x08,0x08}, {0x47,0x08,0x08}},
  66. .host_flags = IDE_HFLAG_TRUST_BIOS_FOR_DMA |
  67. IDE_HFLAG_BOOTABLE,
  68. .swdma_mask = ATA_SWDMA2,
  69. .mwdma_mask = ATA_MWDMA2,
  70. .udma_mask = ATA_UDMA6,
  71. },
  72. /* 2 */ DECLARE_GENERIC_PCI_DEV("SAMURAI", 0),
  73. /* 3 */ DECLARE_GENERIC_PCI_DEV("HT6565", 0),
  74. /* 4 */ DECLARE_GENERIC_PCI_DEV("UM8673F", IDE_HFLAGS_UMC),
  75. /* 5 */ DECLARE_GENERIC_PCI_DEV("UM8886A", IDE_HFLAGS_UMC),
  76. /* 6 */ DECLARE_GENERIC_PCI_DEV("UM8886BF", IDE_HFLAGS_UMC),
  77. /* 7 */ DECLARE_GENERIC_PCI_DEV("HINT_IDE", 0),
  78. /* 8 */ DECLARE_GENERIC_PCI_DEV("VIA_IDE", IDE_HFLAG_NO_AUTODMA),
  79. /* 9 */ DECLARE_GENERIC_PCI_DEV("OPTI621V", IDE_HFLAG_NO_AUTODMA),
  80. { /* 10 */
  81. .name = "VIA8237SATA",
  82. .host_flags = IDE_HFLAG_TRUST_BIOS_FOR_DMA |
  83. IDE_HFLAG_OFF_BOARD,
  84. .swdma_mask = ATA_SWDMA2,
  85. .mwdma_mask = ATA_MWDMA2,
  86. .udma_mask = ATA_UDMA6,
  87. },
  88. /* 11 */ DECLARE_GENERIC_PCI_DEV("Piccolo0102", IDE_HFLAG_NO_AUTODMA),
  89. /* 12 */ DECLARE_GENERIC_PCI_DEV("Piccolo0103", IDE_HFLAG_NO_AUTODMA),
  90. /* 13 */ DECLARE_GENERIC_PCI_DEV("Piccolo0105", IDE_HFLAG_NO_AUTODMA),
  91. { /* 14 */
  92. .name = "Revolution",
  93. .host_flags = IDE_HFLAG_CLEAR_SIMPLEX |
  94. IDE_HFLAG_TRUST_BIOS_FOR_DMA |
  95. IDE_HFLAG_OFF_BOARD,
  96. .swdma_mask = ATA_SWDMA2,
  97. .mwdma_mask = ATA_MWDMA2,
  98. .udma_mask = ATA_UDMA6,
  99. }
  100. };
  101. /**
  102. * generic_init_one - called when a PIIX is found
  103. * @dev: the generic device
  104. * @id: the matching pci id
  105. *
  106. * Called when the PCI registration layer (or the IDE initialization)
  107. * finds a device matching our IDE device tables.
  108. */
  109. static int __devinit generic_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  110. {
  111. const struct ide_port_info *d = &generic_chipsets[id->driver_data];
  112. int ret = -ENODEV;
  113. /* Don't use the generic entry unless instructed to do so */
  114. if (id->driver_data == 0 && ide_generic_all == 0)
  115. goto out;
  116. switch (dev->vendor) {
  117. case PCI_VENDOR_ID_UMC:
  118. if (dev->device == PCI_DEVICE_ID_UMC_UM8886A &&
  119. !(PCI_FUNC(dev->devfn) & 1))
  120. goto out; /* UM8886A/BF pair */
  121. break;
  122. case PCI_VENDOR_ID_OPTI:
  123. if (dev->device == PCI_DEVICE_ID_OPTI_82C558 &&
  124. !(PCI_FUNC(dev->devfn) & 1))
  125. goto out;
  126. break;
  127. case PCI_VENDOR_ID_JMICRON:
  128. if (dev->device != PCI_DEVICE_ID_JMICRON_JMB368 &&
  129. PCI_FUNC(dev->devfn) != 1)
  130. goto out;
  131. break;
  132. case PCI_VENDOR_ID_NS:
  133. if (dev->device == PCI_DEVICE_ID_NS_87410 &&
  134. (dev->class >> 8) != PCI_CLASS_STORAGE_IDE)
  135. goto out;
  136. break;
  137. }
  138. if (dev->vendor != PCI_VENDOR_ID_JMICRON) {
  139. u16 command;
  140. pci_read_config_word(dev, PCI_COMMAND, &command);
  141. if (!(command & PCI_COMMAND_IO)) {
  142. printk(KERN_INFO "Skipping disabled %s IDE "
  143. "controller.\n", d->name);
  144. goto out;
  145. }
  146. }
  147. ret = ide_setup_pci_device(dev, d);
  148. out:
  149. return ret;
  150. }
  151. static const struct pci_device_id generic_pci_tbl[] = {
  152. { PCI_VDEVICE(NS, PCI_DEVICE_ID_NS_87410), 1 },
  153. { PCI_VDEVICE(PCTECH, PCI_DEVICE_ID_PCTECH_SAMURAI_IDE), 2 },
  154. { PCI_VDEVICE(HOLTEK, PCI_DEVICE_ID_HOLTEK_6565), 3 },
  155. { PCI_VDEVICE(UMC, PCI_DEVICE_ID_UMC_UM8673F), 4 },
  156. { PCI_VDEVICE(UMC, PCI_DEVICE_ID_UMC_UM8886A), 5 },
  157. { PCI_VDEVICE(UMC, PCI_DEVICE_ID_UMC_UM8886BF), 6 },
  158. { PCI_VDEVICE(HINT, PCI_DEVICE_ID_HINT_VXPROII_IDE), 7 },
  159. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_82C561), 8 },
  160. { PCI_VDEVICE(OPTI, PCI_DEVICE_ID_OPTI_82C558), 9 },
  161. #ifdef CONFIG_BLK_DEV_IDE_SATA
  162. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_8237_SATA), 10 },
  163. #endif
  164. { PCI_VDEVICE(TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO), 11 },
  165. { PCI_VDEVICE(TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO_1), 12 },
  166. { PCI_VDEVICE(TOSHIBA, PCI_DEVICE_ID_TOSHIBA_PICCOLO_2), 13 },
  167. { PCI_VDEVICE(NETCELL, PCI_DEVICE_ID_REVOLUTION), 14 },
  168. /*
  169. * Must come last. If you add entries adjust
  170. * this table and generic_chipsets[] appropriately.
  171. */
  172. { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_STORAGE_IDE << 8, 0xFFFFFF00UL, 0 },
  173. { 0, },
  174. };
  175. MODULE_DEVICE_TABLE(pci, generic_pci_tbl);
  176. static struct pci_driver driver = {
  177. .name = "PCI_IDE",
  178. .id_table = generic_pci_tbl,
  179. .probe = generic_init_one,
  180. };
  181. static int __init generic_ide_init(void)
  182. {
  183. return ide_pci_register_driver(&driver);
  184. }
  185. module_init(generic_ide_init);
  186. MODULE_AUTHOR("Andre Hedrick");
  187. MODULE_DESCRIPTION("PCI driver module for generic PCI IDE");
  188. MODULE_LICENSE("GPL");