pata_triflex.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. /*
  2. * pata_triflex.c - Compaq PATA for new ATA layer
  3. * (C) 2005 Red Hat Inc
  4. * Alan Cox <alan@lxorguk.ukuu.org.uk>
  5. *
  6. * based upon
  7. *
  8. * triflex.c
  9. *
  10. * IDE Chipset driver for the Compaq TriFlex IDE controller.
  11. *
  12. * Known to work with the Compaq Workstation 5x00 series.
  13. *
  14. * Copyright (C) 2002 Hewlett-Packard Development Group, L.P.
  15. * Author: Torben Mathiasen <torben.mathiasen@hp.com>
  16. *
  17. * This program is free software; you can redistribute it and/or modify
  18. * it under the terms of the GNU General Public License version 2 as
  19. * published by the Free Software Foundation.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software
  28. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  29. *
  30. * Loosely based on the piix & svwks drivers.
  31. *
  32. * Documentation:
  33. * Not publicly available.
  34. */
  35. #include <linux/kernel.h>
  36. #include <linux/module.h>
  37. #include <linux/pci.h>
  38. #include <linux/blkdev.h>
  39. #include <linux/delay.h>
  40. #include <scsi/scsi_host.h>
  41. #include <linux/libata.h>
  42. #define DRV_NAME "pata_triflex"
  43. #define DRV_VERSION "0.2.8"
  44. /**
  45. * triflex_prereset - probe begin
  46. * @link: ATA link
  47. * @deadline: deadline jiffies for the operation
  48. *
  49. * Set up cable type and use generic probe init
  50. */
  51. static int triflex_prereset(struct ata_link *link, unsigned long deadline)
  52. {
  53. static const struct pci_bits triflex_enable_bits[] = {
  54. { 0x80, 1, 0x01, 0x01 },
  55. { 0x80, 1, 0x02, 0x02 }
  56. };
  57. struct ata_port *ap = link->ap;
  58. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  59. if (!pci_test_config_bits(pdev, &triflex_enable_bits[ap->port_no]))
  60. return -ENOENT;
  61. return ata_sff_prereset(link, deadline);
  62. }
  63. /**
  64. * triflex_load_timing - timing configuration
  65. * @ap: ATA interface
  66. * @adev: Device on the bus
  67. * @speed: speed to configure
  68. *
  69. * The Triflex has one set of timings per device per channel. This
  70. * means we must do some switching. As the PIO and DMA timings don't
  71. * match we have to do some reloading unlike PIIX devices where tuning
  72. * tricks can avoid it.
  73. */
  74. static void triflex_load_timing(struct ata_port *ap, struct ata_device *adev, int speed)
  75. {
  76. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  77. u32 timing = 0;
  78. u32 triflex_timing, old_triflex_timing;
  79. int channel_offset = ap->port_no ? 0x74: 0x70;
  80. unsigned int is_slave = (adev->devno != 0);
  81. pci_read_config_dword(pdev, channel_offset, &old_triflex_timing);
  82. triflex_timing = old_triflex_timing;
  83. switch(speed)
  84. {
  85. case XFER_MW_DMA_2:
  86. timing = 0x0103;break;
  87. case XFER_MW_DMA_1:
  88. timing = 0x0203;break;
  89. case XFER_MW_DMA_0:
  90. timing = 0x0808;break;
  91. case XFER_SW_DMA_2:
  92. case XFER_SW_DMA_1:
  93. case XFER_SW_DMA_0:
  94. timing = 0x0F0F;break;
  95. case XFER_PIO_4:
  96. timing = 0x0202;break;
  97. case XFER_PIO_3:
  98. timing = 0x0204;break;
  99. case XFER_PIO_2:
  100. timing = 0x0404;break;
  101. case XFER_PIO_1:
  102. timing = 0x0508;break;
  103. case XFER_PIO_0:
  104. timing = 0x0808;break;
  105. default:
  106. BUG();
  107. }
  108. triflex_timing &= ~ (0xFFFF << (16 * is_slave));
  109. triflex_timing |= (timing << (16 * is_slave));
  110. if (triflex_timing != old_triflex_timing)
  111. pci_write_config_dword(pdev, channel_offset, triflex_timing);
  112. }
  113. /**
  114. * triflex_set_piomode - set initial PIO mode data
  115. * @ap: ATA interface
  116. * @adev: ATA device
  117. *
  118. * Use the timing loader to set up the PIO mode. We have to do this
  119. * because DMA start/stop will only be called once DMA occurs. If there
  120. * has been no DMA then the PIO timings are still needed.
  121. */
  122. static void triflex_set_piomode(struct ata_port *ap, struct ata_device *adev)
  123. {
  124. triflex_load_timing(ap, adev, adev->pio_mode);
  125. }
  126. /**
  127. * triflex_dma_start - DMA start callback
  128. * @qc: Command in progress
  129. *
  130. * Usually drivers set the DMA timing at the point the set_dmamode call
  131. * is made. Triflex however requires we load new timings on the
  132. * transition or keep matching PIO/DMA pairs (ie MWDMA2/PIO4 etc).
  133. * We load the DMA timings just before starting DMA and then restore
  134. * the PIO timing when the DMA is finished.
  135. */
  136. static void triflex_bmdma_start(struct ata_queued_cmd *qc)
  137. {
  138. triflex_load_timing(qc->ap, qc->dev, qc->dev->dma_mode);
  139. ata_bmdma_start(qc);
  140. }
  141. /**
  142. * triflex_dma_stop - DMA stop callback
  143. * @ap: ATA interface
  144. * @adev: ATA device
  145. *
  146. * We loaded new timings in dma_start, as a result we need to restore
  147. * the PIO timings in dma_stop so that the next command issue gets the
  148. * right clock values.
  149. */
  150. static void triflex_bmdma_stop(struct ata_queued_cmd *qc)
  151. {
  152. ata_bmdma_stop(qc);
  153. triflex_load_timing(qc->ap, qc->dev, qc->dev->pio_mode);
  154. }
  155. static struct scsi_host_template triflex_sht = {
  156. ATA_BMDMA_SHT(DRV_NAME),
  157. };
  158. static struct ata_port_operations triflex_port_ops = {
  159. .inherits = &ata_bmdma_port_ops,
  160. .bmdma_start = triflex_bmdma_start,
  161. .bmdma_stop = triflex_bmdma_stop,
  162. .cable_detect = ata_cable_40wire,
  163. .set_piomode = triflex_set_piomode,
  164. .prereset = triflex_prereset,
  165. };
  166. static int triflex_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  167. {
  168. static const struct ata_port_info info = {
  169. .flags = ATA_FLAG_SLAVE_POSS,
  170. .pio_mask = ATA_PIO4,
  171. .mwdma_mask = ATA_MWDMA2,
  172. .port_ops = &triflex_port_ops
  173. };
  174. const struct ata_port_info *ppi[] = { &info, NULL };
  175. ata_print_version_once(&dev->dev, DRV_VERSION);
  176. return ata_pci_bmdma_init_one(dev, ppi, &triflex_sht, NULL, 0);
  177. }
  178. static const struct pci_device_id triflex[] = {
  179. { PCI_VDEVICE(COMPAQ, PCI_DEVICE_ID_COMPAQ_TRIFLEX_IDE), },
  180. { },
  181. };
  182. #ifdef CONFIG_PM_SLEEP
  183. static int triflex_ata_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
  184. {
  185. struct ata_host *host = pci_get_drvdata(pdev);
  186. int rc = 0;
  187. rc = ata_host_suspend(host, mesg);
  188. if (rc)
  189. return rc;
  190. /*
  191. * We must not disable or powerdown the device.
  192. * APM bios refuses to suspend if IDE is not accessible.
  193. */
  194. pci_save_state(pdev);
  195. return 0;
  196. }
  197. #endif
  198. static struct pci_driver triflex_pci_driver = {
  199. .name = DRV_NAME,
  200. .id_table = triflex,
  201. .probe = triflex_init_one,
  202. .remove = ata_pci_remove_one,
  203. #ifdef CONFIG_PM_SLEEP
  204. .suspend = triflex_ata_pci_device_suspend,
  205. .resume = ata_pci_device_resume,
  206. #endif
  207. };
  208. module_pci_driver(triflex_pci_driver);
  209. MODULE_AUTHOR("Alan Cox");
  210. MODULE_DESCRIPTION("low-level driver for Compaq Triflex");
  211. MODULE_LICENSE("GPL");
  212. MODULE_DEVICE_TABLE(pci, triflex);
  213. MODULE_VERSION(DRV_VERSION);