pata_atiixp.c 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313
  1. /*
  2. * pata_atiixp.c - ATI PATA for new ATA layer
  3. * (C) 2005 Red Hat Inc
  4. * (C) 2009-2010 Bartlomiej Zolnierkiewicz
  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/blkdev.h>
  18. #include <linux/delay.h>
  19. #include <scsi/scsi_host.h>
  20. #include <linux/libata.h>
  21. #include <linux/dmi.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 const struct dmi_system_id attixp_cable_override_dmi_table[] = {
  33. {
  34. /* Board has onboard PATA<->SATA converters */
  35. .ident = "MSI E350DM-E33",
  36. .matches = {
  37. DMI_MATCH(DMI_BOARD_VENDOR, "MSI"),
  38. DMI_MATCH(DMI_BOARD_NAME, "E350DM-E33(MS-7720)"),
  39. },
  40. },
  41. { }
  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. if (dmi_check_system(attixp_cable_override_dmi_table))
  48. return ATA_CBL_PATA40_SHORT;
  49. /* Hack from drivers/ide/pci. Really we want to know how to do the
  50. raw detection not play follow the bios mode guess */
  51. pci_read_config_byte(pdev, ATIIXP_IDE_UDMA_MODE + ap->port_no, &udma);
  52. if ((udma & 0x07) >= 0x04 || (udma & 0x70) >= 0x40)
  53. return ATA_CBL_PATA80;
  54. return ATA_CBL_PATA40;
  55. }
  56. static DEFINE_SPINLOCK(atiixp_lock);
  57. /**
  58. * atiixp_prereset - perform reset handling
  59. * @link: ATA link
  60. * @deadline: deadline jiffies for the operation
  61. *
  62. * Reset sequence checking enable bits to see which ports are
  63. * active.
  64. */
  65. static int atiixp_prereset(struct ata_link *link, unsigned long deadline)
  66. {
  67. static const struct pci_bits atiixp_enable_bits[] = {
  68. { 0x48, 1, 0x01, 0x00 },
  69. { 0x48, 1, 0x08, 0x00 }
  70. };
  71. struct ata_port *ap = link->ap;
  72. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  73. if (!pci_test_config_bits(pdev, &atiixp_enable_bits[ap->port_no]))
  74. return -ENOENT;
  75. return ata_sff_prereset(link, deadline);
  76. }
  77. /**
  78. * atiixp_set_pio_timing - set initial PIO mode data
  79. * @ap: ATA interface
  80. * @adev: ATA device
  81. *
  82. * Called by both the pio and dma setup functions to set the controller
  83. * timings for PIO transfers. We must load both the mode number and
  84. * timing values into the controller.
  85. */
  86. static void atiixp_set_pio_timing(struct ata_port *ap, struct ata_device *adev, int pio)
  87. {
  88. static u8 pio_timings[5] = { 0x5D, 0x47, 0x34, 0x22, 0x20 };
  89. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  90. int dn = 2 * ap->port_no + adev->devno;
  91. int timing_shift = (16 * ap->port_no) + 8 * (adev->devno ^ 1);
  92. u32 pio_timing_data;
  93. u16 pio_mode_data;
  94. pci_read_config_word(pdev, ATIIXP_IDE_PIO_MODE, &pio_mode_data);
  95. pio_mode_data &= ~(0x7 << (4 * dn));
  96. pio_mode_data |= pio << (4 * dn);
  97. pci_write_config_word(pdev, ATIIXP_IDE_PIO_MODE, pio_mode_data);
  98. pci_read_config_dword(pdev, ATIIXP_IDE_PIO_TIMING, &pio_timing_data);
  99. pio_timing_data &= ~(0xFF << timing_shift);
  100. pio_timing_data |= (pio_timings[pio] << timing_shift);
  101. pci_write_config_dword(pdev, ATIIXP_IDE_PIO_TIMING, pio_timing_data);
  102. }
  103. /**
  104. * atiixp_set_piomode - set initial PIO mode data
  105. * @ap: ATA interface
  106. * @adev: ATA device
  107. *
  108. * Called to do the PIO mode setup. We use a shared helper for this
  109. * as the DMA setup must also adjust the PIO timing information.
  110. */
  111. static void atiixp_set_piomode(struct ata_port *ap, struct ata_device *adev)
  112. {
  113. unsigned long flags;
  114. spin_lock_irqsave(&atiixp_lock, flags);
  115. atiixp_set_pio_timing(ap, adev, adev->pio_mode - XFER_PIO_0);
  116. spin_unlock_irqrestore(&atiixp_lock, flags);
  117. }
  118. /**
  119. * atiixp_set_dmamode - set initial DMA mode data
  120. * @ap: ATA interface
  121. * @adev: ATA device
  122. *
  123. * Called to do the DMA mode setup. We use timing tables for most
  124. * modes but must tune an appropriate PIO mode to match.
  125. */
  126. static void atiixp_set_dmamode(struct ata_port *ap, struct ata_device *adev)
  127. {
  128. static u8 mwdma_timings[5] = { 0x77, 0x21, 0x20 };
  129. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  130. int dma = adev->dma_mode;
  131. int dn = 2 * ap->port_no + adev->devno;
  132. int wanted_pio;
  133. unsigned long flags;
  134. spin_lock_irqsave(&atiixp_lock, flags);
  135. if (adev->dma_mode >= XFER_UDMA_0) {
  136. u16 udma_mode_data;
  137. dma -= XFER_UDMA_0;
  138. pci_read_config_word(pdev, ATIIXP_IDE_UDMA_MODE, &udma_mode_data);
  139. udma_mode_data &= ~(0x7 << (4 * dn));
  140. udma_mode_data |= dma << (4 * dn);
  141. pci_write_config_word(pdev, ATIIXP_IDE_UDMA_MODE, udma_mode_data);
  142. } else {
  143. int timing_shift = (16 * ap->port_no) + 8 * (adev->devno ^ 1);
  144. u32 mwdma_timing_data;
  145. dma -= XFER_MW_DMA_0;
  146. pci_read_config_dword(pdev, ATIIXP_IDE_MWDMA_TIMING,
  147. &mwdma_timing_data);
  148. mwdma_timing_data &= ~(0xFF << timing_shift);
  149. mwdma_timing_data |= (mwdma_timings[dma] << timing_shift);
  150. pci_write_config_dword(pdev, ATIIXP_IDE_MWDMA_TIMING,
  151. mwdma_timing_data);
  152. }
  153. /*
  154. * We must now look at the PIO mode situation. We may need to
  155. * adjust the PIO mode to keep the timings acceptable
  156. */
  157. if (adev->dma_mode >= XFER_MW_DMA_2)
  158. wanted_pio = 4;
  159. else if (adev->dma_mode == XFER_MW_DMA_1)
  160. wanted_pio = 3;
  161. else if (adev->dma_mode == XFER_MW_DMA_0)
  162. wanted_pio = 0;
  163. else BUG();
  164. if (adev->pio_mode != wanted_pio)
  165. atiixp_set_pio_timing(ap, adev, wanted_pio);
  166. spin_unlock_irqrestore(&atiixp_lock, flags);
  167. }
  168. /**
  169. * atiixp_bmdma_start - DMA start callback
  170. * @qc: Command in progress
  171. *
  172. * When DMA begins we need to ensure that the UDMA control
  173. * register for the channel is correctly set.
  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_start(struct ata_queued_cmd *qc)
  179. {
  180. struct ata_port *ap = qc->ap;
  181. struct ata_device *adev = qc->dev;
  182. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  183. int dn = (2 * ap->port_no) + adev->devno;
  184. u16 tmp16;
  185. pci_read_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, &tmp16);
  186. if (ata_using_udma(adev))
  187. tmp16 |= (1 << dn);
  188. else
  189. tmp16 &= ~(1 << dn);
  190. pci_write_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, tmp16);
  191. ata_bmdma_start(qc);
  192. }
  193. /**
  194. * atiixp_dma_stop - DMA stop callback
  195. * @qc: Command in progress
  196. *
  197. * DMA has completed. Clear the UDMA flag as the next operations will
  198. * be PIO ones not UDMA data transfer.
  199. *
  200. * Note: The host lock held by the libata layer protects
  201. * us from two channels both trying to set DMA bits at once
  202. */
  203. static void atiixp_bmdma_stop(struct ata_queued_cmd *qc)
  204. {
  205. struct ata_port *ap = qc->ap;
  206. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  207. int dn = (2 * ap->port_no) + qc->dev->devno;
  208. u16 tmp16;
  209. pci_read_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, &tmp16);
  210. tmp16 &= ~(1 << dn);
  211. pci_write_config_word(pdev, ATIIXP_IDE_UDMA_CONTROL, tmp16);
  212. ata_bmdma_stop(qc);
  213. }
  214. static struct scsi_host_template atiixp_sht = {
  215. ATA_BMDMA_SHT(DRV_NAME),
  216. .sg_tablesize = LIBATA_DUMB_MAX_PRD,
  217. };
  218. static struct ata_port_operations atiixp_port_ops = {
  219. .inherits = &ata_bmdma_port_ops,
  220. .qc_prep = ata_bmdma_dumb_qc_prep,
  221. .bmdma_start = atiixp_bmdma_start,
  222. .bmdma_stop = atiixp_bmdma_stop,
  223. .prereset = atiixp_prereset,
  224. .cable_detect = atiixp_cable_detect,
  225. .set_piomode = atiixp_set_piomode,
  226. .set_dmamode = atiixp_set_dmamode,
  227. };
  228. static int atiixp_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
  229. {
  230. static const struct ata_port_info info = {
  231. .flags = ATA_FLAG_SLAVE_POSS,
  232. .pio_mask = ATA_PIO4,
  233. .mwdma_mask = ATA_MWDMA12_ONLY,
  234. .udma_mask = ATA_UDMA5,
  235. .port_ops = &atiixp_port_ops
  236. };
  237. const struct ata_port_info *ppi[] = { &info, &info };
  238. return ata_pci_bmdma_init_one(pdev, ppi, &atiixp_sht, NULL,
  239. ATA_HOST_PARALLEL_SCAN);
  240. }
  241. static const struct pci_device_id atiixp[] = {
  242. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP200_IDE), },
  243. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP300_IDE), },
  244. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP400_IDE), },
  245. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP600_IDE), },
  246. { PCI_VDEVICE(ATI, PCI_DEVICE_ID_ATI_IXP700_IDE), },
  247. { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_HUDSON2_IDE), },
  248. { },
  249. };
  250. static struct pci_driver atiixp_pci_driver = {
  251. .name = DRV_NAME,
  252. .id_table = atiixp,
  253. .probe = atiixp_init_one,
  254. .remove = ata_pci_remove_one,
  255. #ifdef CONFIG_PM_SLEEP
  256. .resume = ata_pci_device_resume,
  257. .suspend = ata_pci_device_suspend,
  258. #endif
  259. };
  260. module_pci_driver(atiixp_pci_driver);
  261. MODULE_AUTHOR("Alan Cox");
  262. MODULE_DESCRIPTION("low-level driver for ATI IXP200/300/400");
  263. MODULE_LICENSE("GPL");
  264. MODULE_DEVICE_TABLE(pci, atiixp);
  265. MODULE_VERSION(DRV_VERSION);