pata_atiixp.c 9.0 KB

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