pata_cs5535.c 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. /*
  2. * pata-cs5535.c - CS5535 PATA for new ATA layer
  3. * (C) 2005-2006 Red Hat Inc
  4. * Alan Cox <alan@lxorguk.ukuu.org.uk>
  5. *
  6. * based upon cs5535.c from AMD <Jens.Altmann@amd.com> as cleaned up and
  7. * made readable and Linux style by Wolfgang Zuleger <wolfgang.zuleger@gmx.de>
  8. * and Alexander Kiausch <alex.kiausch@t-online.de>
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  22. *
  23. * Loosely based on the piix & svwks drivers.
  24. *
  25. * Documentation:
  26. * Available from AMD web site.
  27. * TODO
  28. * Review errata to see if serializing is necessary
  29. */
  30. #include <linux/kernel.h>
  31. #include <linux/module.h>
  32. #include <linux/pci.h>
  33. #include <linux/init.h>
  34. #include <linux/blkdev.h>
  35. #include <linux/delay.h>
  36. #include <scsi/scsi_host.h>
  37. #include <linux/libata.h>
  38. #include <asm/msr.h>
  39. #define DRV_NAME "pata_cs5535"
  40. #define DRV_VERSION "0.2.12"
  41. /*
  42. * The Geode (Aka Athlon GX now) uses an internal MSR based
  43. * bus system for control. Demented but there you go.
  44. */
  45. #define MSR_ATAC_BASE 0x51300000
  46. #define ATAC_GLD_MSR_CAP (MSR_ATAC_BASE+0)
  47. #define ATAC_GLD_MSR_CONFIG (MSR_ATAC_BASE+0x01)
  48. #define ATAC_GLD_MSR_SMI (MSR_ATAC_BASE+0x02)
  49. #define ATAC_GLD_MSR_ERROR (MSR_ATAC_BASE+0x03)
  50. #define ATAC_GLD_MSR_PM (MSR_ATAC_BASE+0x04)
  51. #define ATAC_GLD_MSR_DIAG (MSR_ATAC_BASE+0x05)
  52. #define ATAC_IO_BAR (MSR_ATAC_BASE+0x08)
  53. #define ATAC_RESET (MSR_ATAC_BASE+0x10)
  54. #define ATAC_CH0D0_PIO (MSR_ATAC_BASE+0x20)
  55. #define ATAC_CH0D0_DMA (MSR_ATAC_BASE+0x21)
  56. #define ATAC_CH0D1_PIO (MSR_ATAC_BASE+0x22)
  57. #define ATAC_CH0D1_DMA (MSR_ATAC_BASE+0x23)
  58. #define ATAC_PCI_ABRTERR (MSR_ATAC_BASE+0x24)
  59. #define ATAC_BM0_CMD_PRIM 0x00
  60. #define ATAC_BM0_STS_PRIM 0x02
  61. #define ATAC_BM0_PRD 0x04
  62. #define CS5535_CABLE_DETECT 0x48
  63. /**
  64. * cs5535_cable_detect - detect cable type
  65. * @ap: Port to detect on
  66. *
  67. * Perform cable detection for ATA66 capable cable. Return a libata
  68. * cable type.
  69. */
  70. static int cs5535_cable_detect(struct ata_port *ap)
  71. {
  72. u8 cable;
  73. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  74. pci_read_config_byte(pdev, CS5535_CABLE_DETECT, &cable);
  75. if (cable & 1)
  76. return ATA_CBL_PATA80;
  77. else
  78. return ATA_CBL_PATA40;
  79. }
  80. /**
  81. * cs5535_set_piomode - PIO setup
  82. * @ap: ATA interface
  83. * @adev: device on the interface
  84. *
  85. * Set our PIO requirements. The CS5535 is pretty clean about all this
  86. */
  87. static void cs5535_set_piomode(struct ata_port *ap, struct ata_device *adev)
  88. {
  89. static const u16 pio_timings[5] = {
  90. 0xF7F4, 0xF173, 0x8141, 0x5131, 0x1131
  91. };
  92. static const u16 pio_cmd_timings[5] = {
  93. 0xF7F4, 0x53F3, 0x13F1, 0x5131, 0x1131
  94. };
  95. u32 reg, dummy;
  96. struct ata_device *pair = ata_dev_pair(adev);
  97. int mode = adev->pio_mode - XFER_PIO_0;
  98. int cmdmode = mode;
  99. /* Command timing has to be for the lowest of the pair of devices */
  100. if (pair) {
  101. int pairmode = pair->pio_mode - XFER_PIO_0;
  102. cmdmode = min(mode, pairmode);
  103. /* Write the other drive timing register if it changed */
  104. if (cmdmode < pairmode)
  105. wrmsr(ATAC_CH0D0_PIO + 2 * pair->devno,
  106. pio_cmd_timings[cmdmode] << 16 | pio_timings[pairmode], 0);
  107. }
  108. /* Write the drive timing register */
  109. wrmsr(ATAC_CH0D0_PIO + 2 * adev->devno,
  110. pio_cmd_timings[cmdmode] << 16 | pio_timings[mode], 0);
  111. /* Set the PIO "format 1" bit in the DMA timing register */
  112. rdmsr(ATAC_CH0D0_DMA + 2 * adev->devno, reg, dummy);
  113. wrmsr(ATAC_CH0D0_DMA + 2 * adev->devno, reg | 0x80000000UL, 0);
  114. }
  115. /**
  116. * cs5535_set_dmamode - DMA timing setup
  117. * @ap: ATA interface
  118. * @adev: Device being configured
  119. *
  120. */
  121. static void cs5535_set_dmamode(struct ata_port *ap, struct ata_device *adev)
  122. {
  123. static const u32 udma_timings[5] = {
  124. 0x7F7436A1, 0x7F733481, 0x7F723261, 0x7F713161, 0x7F703061
  125. };
  126. static const u32 mwdma_timings[3] = {
  127. 0x7F0FFFF3, 0x7F035352, 0x7F024241
  128. };
  129. u32 reg, dummy;
  130. int mode = adev->dma_mode;
  131. rdmsr(ATAC_CH0D0_DMA + 2 * adev->devno, reg, dummy);
  132. reg &= 0x80000000UL;
  133. if (mode >= XFER_UDMA_0)
  134. reg |= udma_timings[mode - XFER_UDMA_0];
  135. else
  136. reg |= mwdma_timings[mode - XFER_MW_DMA_0];
  137. wrmsr(ATAC_CH0D0_DMA + 2 * adev->devno, reg, 0);
  138. }
  139. static struct scsi_host_template cs5535_sht = {
  140. ATA_BMDMA_SHT(DRV_NAME),
  141. };
  142. static struct ata_port_operations cs5535_port_ops = {
  143. .inherits = &ata_bmdma_port_ops,
  144. .cable_detect = cs5535_cable_detect,
  145. .set_piomode = cs5535_set_piomode,
  146. .set_dmamode = cs5535_set_dmamode,
  147. };
  148. /**
  149. * cs5535_init_one - Initialise a CS5530
  150. * @dev: PCI device
  151. * @id: Entry in match table
  152. *
  153. * Install a driver for the newly found CS5530 companion chip. Most of
  154. * this is just housekeeping. We have to set the chip up correctly and
  155. * turn off various bits of emulation magic.
  156. */
  157. static int cs5535_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  158. {
  159. static const struct ata_port_info info = {
  160. .flags = ATA_FLAG_SLAVE_POSS,
  161. .pio_mask = ATA_PIO4,
  162. .mwdma_mask = ATA_MWDMA2,
  163. .udma_mask = ATA_UDMA4,
  164. .port_ops = &cs5535_port_ops
  165. };
  166. const struct ata_port_info *ppi[] = { &info, &ata_dummy_port_info };
  167. return ata_pci_bmdma_init_one(dev, ppi, &cs5535_sht, NULL, 0);
  168. }
  169. static const struct pci_device_id cs5535[] = {
  170. { PCI_VDEVICE(NS, PCI_DEVICE_ID_NS_CS5535_IDE), },
  171. { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5535_IDE), },
  172. { },
  173. };
  174. static struct pci_driver cs5535_pci_driver = {
  175. .name = DRV_NAME,
  176. .id_table = cs5535,
  177. .probe = cs5535_init_one,
  178. .remove = ata_pci_remove_one,
  179. #ifdef CONFIG_PM
  180. .suspend = ata_pci_device_suspend,
  181. .resume = ata_pci_device_resume,
  182. #endif
  183. };
  184. static int __init cs5535_init(void)
  185. {
  186. return pci_register_driver(&cs5535_pci_driver);
  187. }
  188. static void __exit cs5535_exit(void)
  189. {
  190. pci_unregister_driver(&cs5535_pci_driver);
  191. }
  192. MODULE_AUTHOR("Alan Cox, Jens Altmann, Wolfgan Zuleger, Alexander Kiausch");
  193. MODULE_DESCRIPTION("low-level driver for the NS/AMD 5535");
  194. MODULE_LICENSE("GPL");
  195. MODULE_DEVICE_TABLE(pci, cs5535);
  196. MODULE_VERSION(DRV_VERSION);
  197. module_init(cs5535_init);
  198. module_exit(cs5535_exit);