generic.c 6.7 KB

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