pata_atiixp.c 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. /*
  2. * pata_atiixp.c - ATI PATA for new ATA layer
  3. * (C) 2005 Red Hat Inc
  4. *
  5. * Based on
  6. *
  7. * linux/drivers/ide/pci/atiixp.c Version 0.01-bart2 Feb. 26, 2004
  8. *
  9. * Copyright (C) 2003 ATI Inc. <hyu@ati.com>
  10. * Copyright (C) 2004 Bartlomiej Zolnierkiewicz
  11. *
  12. */
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/pci.h>
  16. #include <linux/init.h>
  17. #include <linux/blkdev.h>
  18. #include <linux/delay.h>
  19. #include <scsi/scsi_host.h>
  20. #include <linux/libata.h>
  21. #define DRV_NAME "pata_atiixp"
  22. #define DRV_VERSION "0.4.6"
  23. enum {
  24. ATIIXP_IDE_PIO_TIMING = 0x40,
  25. ATIIXP_IDE_MWDMA_TIMING = 0x44,
  26. ATIIXP_IDE_PIO_CONTROL = 0x48,
  27. ATIIXP_IDE_PIO_MODE = 0x4a,
  28. ATIIXP_IDE_UDMA_CONTROL = 0x54,
  29. ATIIXP_IDE_UDMA_MODE = 0x56
  30. };
  31. static int atiixp_pre_reset(struct ata_link *link, unsigned long deadline)
  32. {
  33. struct ata_port *ap = link->ap;
  34. static const struct pci_bits atiixp_enable_bits[] = {
  35. { 0x48, 1, 0x01, 0x00 },
  36. { 0x48, 1, 0x08, 0x00 }
  37. };
  38. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  39. if (!pci_test_config_bits(pdev, &atiixp_enable_bits[ap->port_no]))
  40. return -ENOENT;
  41. return ata_sff_prereset(link, deadline);
  42. }
  43. static int atiixp_cable_detect(struct ata_port *ap)
  44. {
  45. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  46. u8 udma;
  47. /* Hack from drivers/ide/pci. Really we want to know how to do the
  48. raw detection not play follow the bios mode guess */
  49. pci_read_config_byte(pdev, ATIIXP_IDE_UDMA_MODE + ap->port_no, &udma);
  50. if ((udma & 0x07) >= 0x04 || (udma & 0x70) >= 0x40)
  51. return ATA_CBL_PATA80;
  52. return ATA_CBL_PATA40;
  53. }
  54. /**
  55. * atiixp_set_pio_timing - set initial PIO mode data
  56. * @ap: ATA interface
  57. * @adev: ATA device
  58. *
  59. * Called by both the pio and dma setup functions to set the controller
  60. * timings for PIO transfers. We must load both the mode number and
  61. * timing values into the controller.
  62. */
  63. static void atiixp_set_pio_timing(struct ata_port *ap, struct ata_device *adev, int pio)
  64. {
  65. static u8 pio_timings[5] = { 0x5D, 0x47, 0x34, 0x22, 0x20 };
  66. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  67. int dn = 2 * ap->port_no + adev->devno;
  68. /* Check this is correct - the order is odd in both drivers */
  69. int timing_shift = (16 * ap->port_no) + 8 * (adev->devno ^ 1);
  70. u16 pio_mode_data, pio_timing_data;
  71. pci_read_config_word(pdev, ATIIXP_IDE_PIO_MODE, &pio_mode_data);
  72. pio_mode_data &= ~(0x7 << (4 * dn));
  73. pio_mode_data |= pio << (4 * dn);
  74. pci_write_config_word(pdev, ATIIXP_IDE_PIO_MODE, pio_mode_data);
  75. pci_read_config_word(pdev, ATIIXP_IDE_PIO_TIMING, &pio_timing_data);
  76. pio_timing_data &= ~(0xFF << timing_shift);
  77. pio_timing_data |= (pio_timings[pio] << timing_shift);
  78. pci_write_config_word(pdev, ATIIXP_IDE_PIO_TIMING, pio_timing_data);
  79. }
  80. /**
  81. * atiixp_set_piomode - set initial PIO mode data
  82. * @ap: ATA interface
  83. * @adev: ATA device
  84. *
  85. * Called to do the PIO mode setup. We use a shared helper for this
  86. * as the DMA setup must also adjust the PIO timing information.
  87. */
  88. static void atiixp_set_piomode(struct ata_port *ap, struct ata_device *adev)
  89. {
  90. atiixp_set_pio_timing(ap, adev, adev->pio_mode - XFER_PIO_0);
  91. }
  92. /**
  93. * atiixp_set_dmamode - set initial DMA mode data
  94. * @ap: ATA interface
  95. * @adev: ATA device
  96. *
  97. * Called to do the DMA mode setup. We use timing tables for most
  98. * modes but must tune an appropriate PIO mode to match.
  99. */
  100. static void atiixp_set_dmamode(struct ata_port *ap, struct ata_device *adev)
  101. {
  102. static u8 mwdma_timings[5] = { 0x77, 0x21, 0x20 };
  103. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  104. int dma = adev->dma_mode;
  105. int dn = 2 * ap->port_no + adev->devno;
  106. int wanted_pio;
  107. if (adev->dma_mode >= XFER_UDMA_0) {
  108. u16 udma_mode_data;
  109. dma -= XFER_UDMA_0;
  110. pci_read_config_word(pdev, ATIIXP_IDE_UDMA_MODE, &udma_mode_data);
  111. udma_mode_data &= ~(0x7 << (4 * dn));
  112. udma_mode_data |= dma << (4 * dn);
  113. pci_write_config_word(pdev, ATIIXP_IDE_UDMA_MODE, udma_mode_data);
  114. } else {
  115. u16 mwdma_timing_data;
  116. /* Check this is correct - the order is odd in both drivers */
  117. int timing_shift = (16 * ap->port_no) + 8 * (adev->devno ^ 1);
  118. dma -= XFER_MW_DMA_0;
  119. pci_read_config_word(pdev, ATIIXP_IDE_MWDMA_TIMING, &mwdma_timing_data);
  120. mwdma_timing_data &= ~(0xFF << timing_shift);
  121. mwdma_timing_data |= (mwdma_timings[dma] << timing_shift);
  122. pci_write_config_word(pdev, ATIIXP_IDE_MWDMA_TIMING, mwdma_timing_data);
  123. }
  124. /*
  125. * We must now look at the PIO mode situation. We may need to
  126. * adjust the PIO mode to keep the timings acceptable
  127. */
  128. if (adev->dma_mode >= XFER_MW_DMA_2)
  129. wanted_pio = 4;
  130. else if (adev->dma_mode == XFER_MW_DMA_1)
  131. wanted_pio = 3;
  132. else if (adev->dma_mode == XFER_MW_DMA_0)
  133. wanted_pio = 0;
  134. else BUG();
  135. if (adev->pio_mode != wanted_pio)
  136. atiixp_set_pio_timing(ap, adev, wanted_pio);
  137. }
  138. /**
  139. * atiixp_bmdma_start - DMA start callback
  140. * @qc: Command in progress
  141. *
  142. * When DMA begins we need to ensure that the UDMA control
  143. * register for the channel is correctly set.
  144. *
  145. * Note: The host lock held by the libata layer protects
  146. * us from two channels both trying to set DMA bits at once
  147. */
  148. static void atiixp_bmdma_start(struct ata_queued_cmd *qc)
  149. {
  150. struct ata_port *ap = qc->ap;
  151. struct ata_device *adev = qc->dev;
  152. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  153. int dn = (2 * ap->port_no) + adev->devno;
  154. u16 tmp16;
  155. pci_read_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, &tmp16);
  156. if (ata_using_udma(adev))
  157. tmp16 |= (1 << dn);
  158. else
  159. tmp16 &= ~(1 << dn);
  160. pci_write_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, tmp16);
  161. ata_bmdma_start(qc);
  162. }
  163. /**
  164. * atiixp_dma_stop - DMA stop callback
  165. * @qc: Command in progress
  166. *
  167. * DMA has completed. Clear the UDMA flag as the next operations will
  168. * be PIO ones not UDMA data transfer.
  169. *
  170. * Note: The host lock held by the libata layer protects
  171. * us from two channels both trying to set DMA bits at once
  172. */
  173. static void atiixp_bmdma_stop(struct ata_queued_cmd *qc)
  174. {
  175. struct ata_port *ap = qc->ap;
  176. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  177. int dn = (2 * ap->port_no) + qc->dev->devno;
  178. u16 tmp16;
  179. pci_read_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, &tmp16);
  180. tmp16 &= ~(1 << dn);
  181. pci_write_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, tmp16);
  182. ata_bmdma_stop(qc);
  183. }
  184. static struct scsi_host_template atiixp_sht = {
  185. ATA_BMDMA_SHT(DRV_NAME),
  186. .sg_tablesize = LIBATA_DUMB_MAX_PRD,
  187. };
  188. static struct ata_port_operations atiixp_port_ops = {
  189. .inherits = &ata_bmdma_port_ops,
  190. .qc_prep = ata_sff_dumb_qc_prep,
  191. .bmdma_start = atiixp_bmdma_start,
  192. .bmdma_stop = atiixp_bmdma_stop,
  193. .cable_detect = atiixp_cable_detect,
  194. .set_piomode = atiixp_set_piomode,
  195. .set_dmamode = atiixp_set_dmamode,
  196. .prereset = atiixp_pre_reset,
  197. };
  198. static int atiixp_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  199. {
  200. static const struct ata_port_info info = {
  201. .flags = ATA_FLAG_SLAVE_POSS,
  202. .pio_mask = 0x1f,
  203. .mwdma_mask = 0x06, /* No MWDMA0 support */
  204. .udma_mask = 0x3F,
  205. .port_ops = &atiixp_port_ops
  206. };
  207. const struct ata_port_info *ppi[] = { &info, NULL };
  208. return ata_pci_sff_init_one(dev, ppi, &atiixp_sht, NULL);
  209. }
  210. static const struct pci_device_id atiixp[] = {
  211. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP200_IDE), },
  212. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP300_IDE), },
  213. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP400_IDE), },
  214. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP600_IDE), },
  215. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP700_IDE), },
  216. { },
  217. };
  218. static struct pci_driver atiixp_pci_driver = {
  219. .name = DRV_NAME,
  220. .id_table = atiixp,
  221. .probe = atiixp_init_one,
  222. .remove = ata_pci_remove_one,
  223. #ifdef CONFIG_PM
  224. .resume = ata_pci_device_resume,
  225. .suspend = ata_pci_device_suspend,
  226. #endif
  227. };
  228. static int __init atiixp_init(void)
  229. {
  230. return pci_register_driver(&atiixp_pci_driver);
  231. }
  232. static void __exit atiixp_exit(void)
  233. {
  234. pci_unregister_driver(&atiixp_pci_driver);
  235. }
  236. MODULE_AUTHOR("Alan Cox");
  237. MODULE_DESCRIPTION("low-level driver for ATI IXP200/300/400");
  238. MODULE_LICENSE("GPL");
  239. MODULE_DEVICE_TABLE(pci, atiixp);
  240. MODULE_VERSION(DRV_VERSION);
  241. module_init(atiixp_init);
  242. module_exit(atiixp_exit);