pata_oldpiix.c 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. /*
  2. * pata_oldpiix.c - Intel PATA/SATA controllers
  3. *
  4. * (C) 2005 Red Hat <alan@redhat.com>
  5. *
  6. * Some parts based on ata_piix.c by Jeff Garzik and others.
  7. *
  8. * Early PIIX differs significantly from the later PIIX as it lacks
  9. * SITRE and the slave timing registers. This means that you have to
  10. * set timing per channel, or be clever. Libata tells us whenever it
  11. * does drive selection and we use this to reload the timings.
  12. *
  13. * Because of these behaviour differences PIIX gets its own driver module.
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/module.h>
  17. #include <linux/pci.h>
  18. #include <linux/init.h>
  19. #include <linux/blkdev.h>
  20. #include <linux/delay.h>
  21. #include <linux/device.h>
  22. #include <scsi/scsi_host.h>
  23. #include <linux/libata.h>
  24. #include <linux/ata.h>
  25. #define DRV_NAME "pata_oldpiix"
  26. #define DRV_VERSION "0.5.5"
  27. /**
  28. * oldpiix_pre_reset - probe begin
  29. * @link: ATA link
  30. * @deadline: deadline jiffies for the operation
  31. *
  32. * Set up cable type and use generic probe init
  33. */
  34. static int oldpiix_pre_reset(struct ata_link *link, unsigned long deadline)
  35. {
  36. struct ata_port *ap = link->ap;
  37. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  38. static const struct pci_bits oldpiix_enable_bits[] = {
  39. { 0x41U, 1U, 0x80UL, 0x80UL }, /* port 0 */
  40. { 0x43U, 1U, 0x80UL, 0x80UL }, /* port 1 */
  41. };
  42. if (!pci_test_config_bits(pdev, &oldpiix_enable_bits[ap->port_no]))
  43. return -ENOENT;
  44. return ata_std_prereset(link, deadline);
  45. }
  46. /**
  47. * oldpiix_pata_error_handler - Probe specified port on PATA host controller
  48. * @ap: Port to probe
  49. * @classes:
  50. *
  51. * LOCKING:
  52. * None (inherited from caller).
  53. */
  54. static void oldpiix_pata_error_handler(struct ata_port *ap)
  55. {
  56. ata_bmdma_drive_eh(ap, oldpiix_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
  57. }
  58. /**
  59. * oldpiix_set_piomode - Initialize host controller PATA PIO timings
  60. * @ap: Port whose timings we are configuring
  61. * @adev: Device whose timings we are configuring
  62. *
  63. * Set PIO mode for device, in host controller PCI config space.
  64. *
  65. * LOCKING:
  66. * None (inherited from caller).
  67. */
  68. static void oldpiix_set_piomode (struct ata_port *ap, struct ata_device *adev)
  69. {
  70. unsigned int pio = adev->pio_mode - XFER_PIO_0;
  71. struct pci_dev *dev = to_pci_dev(ap->host->dev);
  72. unsigned int idetm_port= ap->port_no ? 0x42 : 0x40;
  73. u16 idetm_data;
  74. int control = 0;
  75. /*
  76. * See Intel Document 298600-004 for the timing programing rules
  77. * for PIIX/ICH. Note that the early PIIX does not have the slave
  78. * timing port at 0x44.
  79. */
  80. static const /* ISP RTC */
  81. u8 timings[][2] = { { 0, 0 },
  82. { 0, 0 },
  83. { 1, 0 },
  84. { 2, 1 },
  85. { 2, 3 }, };
  86. if (pio > 1)
  87. control |= 1; /* TIME */
  88. if (ata_pio_need_iordy(adev))
  89. control |= 2; /* IE */
  90. /* Intel specifies that the prefetch/posting is for disk only */
  91. if (adev->class == ATA_DEV_ATA)
  92. control |= 4; /* PPE */
  93. pci_read_config_word(dev, idetm_port, &idetm_data);
  94. /*
  95. * Set PPE, IE and TIME as appropriate.
  96. * Clear the other drive's timing bits.
  97. */
  98. if (adev->devno == 0) {
  99. idetm_data &= 0xCCE0;
  100. idetm_data |= control;
  101. } else {
  102. idetm_data &= 0xCC0E;
  103. idetm_data |= (control << 4);
  104. }
  105. idetm_data |= (timings[pio][0] << 12) |
  106. (timings[pio][1] << 8);
  107. pci_write_config_word(dev, idetm_port, idetm_data);
  108. /* Track which port is configured */
  109. ap->private_data = adev;
  110. }
  111. /**
  112. * oldpiix_set_dmamode - Initialize host controller PATA DMA timings
  113. * @ap: Port whose timings we are configuring
  114. * @adev: Device to program
  115. * @isich: True if the device is an ICH and has IOCFG registers
  116. *
  117. * Set MWDMA mode for device, in host controller PCI config space.
  118. *
  119. * LOCKING:
  120. * None (inherited from caller).
  121. */
  122. static void oldpiix_set_dmamode (struct ata_port *ap, struct ata_device *adev)
  123. {
  124. struct pci_dev *dev = to_pci_dev(ap->host->dev);
  125. u8 idetm_port = ap->port_no ? 0x42 : 0x40;
  126. u16 idetm_data;
  127. static const /* ISP RTC */
  128. u8 timings[][2] = { { 0, 0 },
  129. { 0, 0 },
  130. { 1, 0 },
  131. { 2, 1 },
  132. { 2, 3 }, };
  133. /*
  134. * MWDMA is driven by the PIO timings. We must also enable
  135. * IORDY unconditionally along with TIME1. PPE has already
  136. * been set when the PIO timing was set.
  137. */
  138. unsigned int mwdma = adev->dma_mode - XFER_MW_DMA_0;
  139. unsigned int control;
  140. const unsigned int needed_pio[3] = {
  141. XFER_PIO_0, XFER_PIO_3, XFER_PIO_4
  142. };
  143. int pio = needed_pio[mwdma] - XFER_PIO_0;
  144. pci_read_config_word(dev, idetm_port, &idetm_data);
  145. control = 3; /* IORDY|TIME0 */
  146. /* Intel specifies that the PPE functionality is for disk only */
  147. if (adev->class == ATA_DEV_ATA)
  148. control |= 4; /* PPE enable */
  149. /* If the drive MWDMA is faster than it can do PIO then
  150. we must force PIO into PIO0 */
  151. if (adev->pio_mode < needed_pio[mwdma])
  152. /* Enable DMA timing only */
  153. control |= 8; /* PIO cycles in PIO0 */
  154. /* Mask out the relevant control and timing bits we will load. Also
  155. clear the other drive TIME register as a precaution */
  156. if (adev->devno == 0) {
  157. idetm_data &= 0xCCE0;
  158. idetm_data |= control;
  159. } else {
  160. idetm_data &= 0xCC0E;
  161. idetm_data |= (control << 4);
  162. }
  163. idetm_data |= (timings[pio][0] << 12) | (timings[pio][1] << 8);
  164. pci_write_config_word(dev, idetm_port, idetm_data);
  165. /* Track which port is configured */
  166. ap->private_data = adev;
  167. }
  168. /**
  169. * oldpiix_qc_issue_prot - command issue
  170. * @qc: command pending
  171. *
  172. * Called when the libata layer is about to issue a command. We wrap
  173. * this interface so that we can load the correct ATA timings if
  174. * necessary. Our logic also clears TIME0/TIME1 for the other device so
  175. * that, even if we get this wrong, cycles to the other device will
  176. * be made PIO0.
  177. */
  178. static unsigned int oldpiix_qc_issue_prot(struct ata_queued_cmd *qc)
  179. {
  180. struct ata_port *ap = qc->ap;
  181. struct ata_device *adev = qc->dev;
  182. if (adev != ap->private_data) {
  183. oldpiix_set_piomode(ap, adev);
  184. if (adev->dma_mode)
  185. oldpiix_set_dmamode(ap, adev);
  186. }
  187. return ata_qc_issue_prot(qc);
  188. }
  189. static struct scsi_host_template oldpiix_sht = {
  190. ATA_BMDMA_SHT(DRV_NAME),
  191. };
  192. static struct ata_port_operations oldpiix_pata_ops = {
  193. .inherits = &ata_bmdma_port_ops,
  194. .qc_issue = oldpiix_qc_issue_prot,
  195. .cable_detect = ata_cable_40wire,
  196. .set_piomode = oldpiix_set_piomode,
  197. .set_dmamode = oldpiix_set_dmamode,
  198. .error_handler = oldpiix_pata_error_handler,
  199. };
  200. /**
  201. * oldpiix_init_one - Register PIIX ATA PCI device with kernel services
  202. * @pdev: PCI device to register
  203. * @ent: Entry in oldpiix_pci_tbl matching with @pdev
  204. *
  205. * Called from kernel PCI layer. We probe for combined mode (sigh),
  206. * and then hand over control to libata, for it to do the rest.
  207. *
  208. * LOCKING:
  209. * Inherited from PCI layer (may sleep).
  210. *
  211. * RETURNS:
  212. * Zero on success, or -ERRNO value.
  213. */
  214. static int oldpiix_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  215. {
  216. static int printed_version;
  217. static const struct ata_port_info info = {
  218. .sht = &oldpiix_sht,
  219. .flags = ATA_FLAG_SLAVE_POSS,
  220. .pio_mask = 0x1f, /* pio0-4 */
  221. .mwdma_mask = 0x07, /* mwdma1-2 */
  222. .port_ops = &oldpiix_pata_ops,
  223. };
  224. const struct ata_port_info *ppi[] = { &info, NULL };
  225. if (!printed_version++)
  226. dev_printk(KERN_DEBUG, &pdev->dev,
  227. "version " DRV_VERSION "\n");
  228. return ata_pci_init_one(pdev, ppi);
  229. }
  230. static const struct pci_device_id oldpiix_pci_tbl[] = {
  231. { PCI_VDEVICE(INTEL, 0x1230), },
  232. { } /* terminate list */
  233. };
  234. static struct pci_driver oldpiix_pci_driver = {
  235. .name = DRV_NAME,
  236. .id_table = oldpiix_pci_tbl,
  237. .probe = oldpiix_init_one,
  238. .remove = ata_pci_remove_one,
  239. #ifdef CONFIG_PM
  240. .suspend = ata_pci_device_suspend,
  241. .resume = ata_pci_device_resume,
  242. #endif
  243. };
  244. static int __init oldpiix_init(void)
  245. {
  246. return pci_register_driver(&oldpiix_pci_driver);
  247. }
  248. static void __exit oldpiix_exit(void)
  249. {
  250. pci_unregister_driver(&oldpiix_pci_driver);
  251. }
  252. module_init(oldpiix_init);
  253. module_exit(oldpiix_exit);
  254. MODULE_AUTHOR("Alan Cox");
  255. MODULE_DESCRIPTION("SCSI low-level driver for early PIIX series controllers");
  256. MODULE_LICENSE("GPL");
  257. MODULE_DEVICE_TABLE(pci, oldpiix_pci_tbl);
  258. MODULE_VERSION(DRV_VERSION);