pata_oldpiix.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  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. * @ap: ATA port
  30. *
  31. * Set up cable type and use generic probe init
  32. */
  33. static int oldpiix_pre_reset(struct ata_port *ap)
  34. {
  35. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  36. static const struct pci_bits oldpiix_enable_bits[] = {
  37. { 0x41U, 1U, 0x80UL, 0x80UL }, /* port 0 */
  38. { 0x43U, 1U, 0x80UL, 0x80UL }, /* port 1 */
  39. };
  40. if (!pci_test_config_bits(pdev, &oldpiix_enable_bits[ap->port_no]))
  41. return -ENOENT;
  42. return ata_std_prereset(ap);
  43. }
  44. /**
  45. * oldpiix_pata_error_handler - Probe specified port on PATA host controller
  46. * @ap: Port to probe
  47. * @classes:
  48. *
  49. * LOCKING:
  50. * None (inherited from caller).
  51. */
  52. static void oldpiix_pata_error_handler(struct ata_port *ap)
  53. {
  54. ata_bmdma_drive_eh(ap, oldpiix_pre_reset, ata_std_softreset, NULL, ata_std_postreset);
  55. }
  56. /**
  57. * oldpiix_set_piomode - Initialize host controller PATA PIO timings
  58. * @ap: Port whose timings we are configuring
  59. * @adev: Device whose timings we are configuring
  60. *
  61. * Set PIO mode for device, in host controller PCI config space.
  62. *
  63. * LOCKING:
  64. * None (inherited from caller).
  65. */
  66. static void oldpiix_set_piomode (struct ata_port *ap, struct ata_device *adev)
  67. {
  68. unsigned int pio = adev->pio_mode - XFER_PIO_0;
  69. struct pci_dev *dev = to_pci_dev(ap->host->dev);
  70. unsigned int idetm_port= ap->port_no ? 0x42 : 0x40;
  71. u16 idetm_data;
  72. int control = 0;
  73. /*
  74. * See Intel Document 298600-004 for the timing programing rules
  75. * for PIIX/ICH. Note that the early PIIX does not have the slave
  76. * timing port at 0x44.
  77. */
  78. static const /* ISP RTC */
  79. u8 timings[][2] = { { 0, 0 },
  80. { 0, 0 },
  81. { 1, 0 },
  82. { 2, 1 },
  83. { 2, 3 }, };
  84. if (pio > 1)
  85. control |= 1; /* TIME */
  86. if (ata_pio_need_iordy(adev))
  87. control |= 2; /* IE */
  88. /* Intel specifies that the prefetch/posting is for disk only */
  89. if (adev->class == ATA_DEV_ATA)
  90. control |= 4; /* PPE */
  91. pci_read_config_word(dev, idetm_port, &idetm_data);
  92. /*
  93. * Set PPE, IE and TIME as appropriate.
  94. * Clear the other drive's timing bits.
  95. */
  96. if (adev->devno == 0) {
  97. idetm_data &= 0xCCE0;
  98. idetm_data |= control;
  99. } else {
  100. idetm_data &= 0xCC0E;
  101. idetm_data |= (control << 4);
  102. }
  103. idetm_data |= (timings[pio][0] << 12) |
  104. (timings[pio][1] << 8);
  105. pci_write_config_word(dev, idetm_port, idetm_data);
  106. /* Track which port is configured */
  107. ap->private_data = adev;
  108. }
  109. /**
  110. * oldpiix_set_dmamode - Initialize host controller PATA DMA timings
  111. * @ap: Port whose timings we are configuring
  112. * @adev: Device to program
  113. * @isich: True if the device is an ICH and has IOCFG registers
  114. *
  115. * Set MWDMA mode for device, in host controller PCI config space.
  116. *
  117. * LOCKING:
  118. * None (inherited from caller).
  119. */
  120. static void oldpiix_set_dmamode (struct ata_port *ap, struct ata_device *adev)
  121. {
  122. struct pci_dev *dev = to_pci_dev(ap->host->dev);
  123. u8 idetm_port = ap->port_no ? 0x42 : 0x40;
  124. u16 idetm_data;
  125. static const /* ISP RTC */
  126. u8 timings[][2] = { { 0, 0 },
  127. { 0, 0 },
  128. { 1, 0 },
  129. { 2, 1 },
  130. { 2, 3 }, };
  131. /*
  132. * MWDMA is driven by the PIO timings. We must also enable
  133. * IORDY unconditionally along with TIME1. PPE has already
  134. * been set when the PIO timing was set.
  135. */
  136. unsigned int mwdma = adev->dma_mode - XFER_MW_DMA_0;
  137. unsigned int control;
  138. const unsigned int needed_pio[3] = {
  139. XFER_PIO_0, XFER_PIO_3, XFER_PIO_4
  140. };
  141. int pio = needed_pio[mwdma] - XFER_PIO_0;
  142. pci_read_config_word(dev, idetm_port, &idetm_data);
  143. control = 3; /* IORDY|TIME0 */
  144. /* Intel specifies that the PPE functionality is for disk only */
  145. if (adev->class == ATA_DEV_ATA)
  146. control |= 4; /* PPE enable */
  147. /* If the drive MWDMA is faster than it can do PIO then
  148. we must force PIO into PIO0 */
  149. if (adev->pio_mode < needed_pio[mwdma])
  150. /* Enable DMA timing only */
  151. control |= 8; /* PIO cycles in PIO0 */
  152. /* Mask out the relevant control and timing bits we will load. Also
  153. clear the other drive TIME register as a precaution */
  154. if (adev->devno == 0) {
  155. idetm_data &= 0xCCE0;
  156. idetm_data |= control;
  157. } else {
  158. idetm_data &= 0xCC0E;
  159. idetm_data |= (control << 4);
  160. }
  161. idetm_data |= (timings[pio][0] << 12) | (timings[pio][1] << 8);
  162. pci_write_config_word(dev, idetm_port, idetm_data);
  163. /* Track which port is configured */
  164. ap->private_data = adev;
  165. }
  166. /**
  167. * oldpiix_qc_issue_prot - command issue
  168. * @qc: command pending
  169. *
  170. * Called when the libata layer is about to issue a command. We wrap
  171. * this interface so that we can load the correct ATA timings if
  172. * neccessary. Our logic also clears TIME0/TIME1 for the other device so
  173. * that, even if we get this wrong, cycles to the other device will
  174. * be made PIO0.
  175. */
  176. static unsigned int oldpiix_qc_issue_prot(struct ata_queued_cmd *qc)
  177. {
  178. struct ata_port *ap = qc->ap;
  179. struct ata_device *adev = qc->dev;
  180. if (adev != ap->private_data) {
  181. oldpiix_set_piomode(ap, adev);
  182. if (adev->dma_mode)
  183. oldpiix_set_dmamode(ap, adev);
  184. }
  185. return ata_qc_issue_prot(qc);
  186. }
  187. static struct scsi_host_template oldpiix_sht = {
  188. .module = THIS_MODULE,
  189. .name = DRV_NAME,
  190. .ioctl = ata_scsi_ioctl,
  191. .queuecommand = ata_scsi_queuecmd,
  192. .can_queue = ATA_DEF_QUEUE,
  193. .this_id = ATA_SHT_THIS_ID,
  194. .sg_tablesize = LIBATA_MAX_PRD,
  195. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  196. .emulated = ATA_SHT_EMULATED,
  197. .use_clustering = ATA_SHT_USE_CLUSTERING,
  198. .proc_name = DRV_NAME,
  199. .dma_boundary = ATA_DMA_BOUNDARY,
  200. .slave_configure = ata_scsi_slave_config,
  201. .slave_destroy = ata_scsi_slave_destroy,
  202. .bios_param = ata_std_bios_param,
  203. #ifdef CONFIG_PM
  204. .resume = ata_scsi_device_resume,
  205. .suspend = ata_scsi_device_suspend,
  206. #endif
  207. };
  208. static const struct ata_port_operations oldpiix_pata_ops = {
  209. .port_disable = ata_port_disable,
  210. .set_piomode = oldpiix_set_piomode,
  211. .set_dmamode = oldpiix_set_dmamode,
  212. .mode_filter = ata_pci_default_filter,
  213. .tf_load = ata_tf_load,
  214. .tf_read = ata_tf_read,
  215. .check_status = ata_check_status,
  216. .exec_command = ata_exec_command,
  217. .dev_select = ata_std_dev_select,
  218. .freeze = ata_bmdma_freeze,
  219. .thaw = ata_bmdma_thaw,
  220. .error_handler = oldpiix_pata_error_handler,
  221. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  222. .cable_detect = ata_cable_40wire,
  223. .bmdma_setup = ata_bmdma_setup,
  224. .bmdma_start = ata_bmdma_start,
  225. .bmdma_stop = ata_bmdma_stop,
  226. .bmdma_status = ata_bmdma_status,
  227. .qc_prep = ata_qc_prep,
  228. .qc_issue = oldpiix_qc_issue_prot,
  229. .data_xfer = ata_data_xfer,
  230. .irq_handler = ata_interrupt,
  231. .irq_clear = ata_bmdma_irq_clear,
  232. .irq_on = ata_irq_on,
  233. .irq_ack = ata_irq_ack,
  234. .port_start = ata_port_start,
  235. };
  236. /**
  237. * oldpiix_init_one - Register PIIX ATA PCI device with kernel services
  238. * @pdev: PCI device to register
  239. * @ent: Entry in oldpiix_pci_tbl matching with @pdev
  240. *
  241. * Called from kernel PCI layer. We probe for combined mode (sigh),
  242. * and then hand over control to libata, for it to do the rest.
  243. *
  244. * LOCKING:
  245. * Inherited from PCI layer (may sleep).
  246. *
  247. * RETURNS:
  248. * Zero on success, or -ERRNO value.
  249. */
  250. static int oldpiix_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  251. {
  252. static int printed_version;
  253. static struct ata_port_info info = {
  254. .sht = &oldpiix_sht,
  255. .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_SRST,
  256. .pio_mask = 0x1f, /* pio0-4 */
  257. .mwdma_mask = 0x07, /* mwdma1-2 */
  258. .port_ops = &oldpiix_pata_ops,
  259. };
  260. static struct ata_port_info *port_info[2] = { &info, &info };
  261. if (!printed_version++)
  262. dev_printk(KERN_DEBUG, &pdev->dev,
  263. "version " DRV_VERSION "\n");
  264. return ata_pci_init_one(pdev, port_info, 2);
  265. }
  266. static const struct pci_device_id oldpiix_pci_tbl[] = {
  267. { PCI_VDEVICE(INTEL, 0x1230), },
  268. { } /* terminate list */
  269. };
  270. static struct pci_driver oldpiix_pci_driver = {
  271. .name = DRV_NAME,
  272. .id_table = oldpiix_pci_tbl,
  273. .probe = oldpiix_init_one,
  274. .remove = ata_pci_remove_one,
  275. #ifdef CONFIG_PM
  276. .suspend = ata_pci_device_suspend,
  277. .resume = ata_pci_device_resume,
  278. #endif
  279. };
  280. static int __init oldpiix_init(void)
  281. {
  282. return pci_register_driver(&oldpiix_pci_driver);
  283. }
  284. static void __exit oldpiix_exit(void)
  285. {
  286. pci_unregister_driver(&oldpiix_pci_driver);
  287. }
  288. module_init(oldpiix_init);
  289. module_exit(oldpiix_exit);
  290. MODULE_AUTHOR("Alan Cox");
  291. MODULE_DESCRIPTION("SCSI low-level driver for early PIIX series controllers");
  292. MODULE_LICENSE("GPL");
  293. MODULE_DEVICE_TABLE(pci, oldpiix_pci_tbl);
  294. MODULE_VERSION(DRV_VERSION);