pata_cs5536.c 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. /*
  2. * pata_cs5536.c - CS5536 PATA for new ATA layer
  3. * (C) 2007 Martin K. Petersen <mkp@mkp.net>
  4. * (C) 2011 Bartlomiej Zolnierkiewicz
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. *
  19. * Documentation:
  20. * Available from AMD web site.
  21. *
  22. * The IDE timing registers for the CS5536 live in the Geode Machine
  23. * Specific Register file and not PCI config space. Most BIOSes
  24. * virtualize the PCI registers so the chip looks like a standard IDE
  25. * controller. Unfortunately not all implementations get this right.
  26. * In particular some have problems with unaligned accesses to the
  27. * virtualized PCI registers. This driver always does full dword
  28. * writes to work around the issue. Also, in case of a bad BIOS this
  29. * driver can be loaded with the "msr=1" parameter which forces using
  30. * the Machine Specific Registers to configure the device.
  31. */
  32. #include <linux/kernel.h>
  33. #include <linux/module.h>
  34. #include <linux/pci.h>
  35. #include <linux/init.h>
  36. #include <linux/blkdev.h>
  37. #include <linux/delay.h>
  38. #include <linux/libata.h>
  39. #include <scsi/scsi_host.h>
  40. #ifdef CONFIG_X86_32
  41. #include <asm/msr.h>
  42. static int use_msr;
  43. module_param_named(msr, use_msr, int, 0644);
  44. MODULE_PARM_DESC(msr, "Force using MSR to configure IDE function (Default: 0)");
  45. #else
  46. #undef rdmsr /* avoid accidental MSR usage on, e.g. x86-64 */
  47. #undef wrmsr
  48. #define rdmsr(x, y, z) do { } while (0)
  49. #define wrmsr(x, y, z) do { } while (0)
  50. #define use_msr 0
  51. #endif
  52. #define DRV_NAME "pata_cs5536"
  53. #define DRV_VERSION "0.0.8"
  54. enum {
  55. MSR_IDE_CFG = 0x51300010,
  56. PCI_IDE_CFG = 0x40,
  57. CFG = 0,
  58. DTC = 2,
  59. CAST = 3,
  60. ETC = 4,
  61. IDE_CFG_CHANEN = (1 << 1),
  62. IDE_CFG_CABLE = (1 << 17) | (1 << 16),
  63. IDE_D0_SHIFT = 24,
  64. IDE_D1_SHIFT = 16,
  65. IDE_DRV_MASK = 0xff,
  66. IDE_CAST_D0_SHIFT = 6,
  67. IDE_CAST_D1_SHIFT = 4,
  68. IDE_CAST_DRV_MASK = 0x3,
  69. IDE_CAST_CMD_MASK = 0xff,
  70. IDE_CAST_CMD_SHIFT = 24,
  71. IDE_ETC_UDMA_MASK = 0xc0,
  72. };
  73. static int cs5536_read(struct pci_dev *pdev, int reg, u32 *val)
  74. {
  75. if (unlikely(use_msr)) {
  76. u32 dummy __maybe_unused;
  77. rdmsr(MSR_IDE_CFG + reg, *val, dummy);
  78. return 0;
  79. }
  80. return pci_read_config_dword(pdev, PCI_IDE_CFG + reg * 4, val);
  81. }
  82. static int cs5536_write(struct pci_dev *pdev, int reg, int val)
  83. {
  84. if (unlikely(use_msr)) {
  85. wrmsr(MSR_IDE_CFG + reg, val, 0);
  86. return 0;
  87. }
  88. return pci_write_config_dword(pdev, PCI_IDE_CFG + reg * 4, val);
  89. }
  90. static void cs5536_program_dtc(struct ata_device *adev, u8 tim)
  91. {
  92. struct pci_dev *pdev = to_pci_dev(adev->link->ap->host->dev);
  93. int dshift = adev->devno ? IDE_D1_SHIFT : IDE_D0_SHIFT;
  94. u32 dtc;
  95. cs5536_read(pdev, DTC, &dtc);
  96. dtc &= ~(IDE_DRV_MASK << dshift);
  97. dtc |= tim << dshift;
  98. cs5536_write(pdev, DTC, dtc);
  99. }
  100. /**
  101. * cs5536_cable_detect - detect cable type
  102. * @ap: Port to detect on
  103. *
  104. * Perform cable detection for ATA66 capable cable.
  105. *
  106. * Returns a cable type.
  107. */
  108. static int cs5536_cable_detect(struct ata_port *ap)
  109. {
  110. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  111. u32 cfg;
  112. cs5536_read(pdev, CFG, &cfg);
  113. if (cfg & IDE_CFG_CABLE)
  114. return ATA_CBL_PATA80;
  115. else
  116. return ATA_CBL_PATA40;
  117. }
  118. /**
  119. * cs5536_set_piomode - PIO setup
  120. * @ap: ATA interface
  121. * @adev: device on the interface
  122. */
  123. static void cs5536_set_piomode(struct ata_port *ap, struct ata_device *adev)
  124. {
  125. static const u8 drv_timings[5] = {
  126. 0x98, 0x55, 0x32, 0x21, 0x20,
  127. };
  128. static const u8 addr_timings[5] = {
  129. 0x2, 0x1, 0x0, 0x0, 0x0,
  130. };
  131. static const u8 cmd_timings[5] = {
  132. 0x99, 0x92, 0x90, 0x22, 0x20,
  133. };
  134. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  135. struct ata_device *pair = ata_dev_pair(adev);
  136. int mode = adev->pio_mode - XFER_PIO_0;
  137. int cmdmode = mode;
  138. int cshift = adev->devno ? IDE_CAST_D1_SHIFT : IDE_CAST_D0_SHIFT;
  139. u32 cast;
  140. if (pair)
  141. cmdmode = min(mode, pair->pio_mode - XFER_PIO_0);
  142. cs5536_program_dtc(adev, drv_timings[mode]);
  143. cs5536_read(pdev, CAST, &cast);
  144. cast &= ~(IDE_CAST_DRV_MASK << cshift);
  145. cast |= addr_timings[mode] << cshift;
  146. cast &= ~(IDE_CAST_CMD_MASK << IDE_CAST_CMD_SHIFT);
  147. cast |= cmd_timings[cmdmode] << IDE_CAST_CMD_SHIFT;
  148. cs5536_write(pdev, CAST, cast);
  149. }
  150. /**
  151. * cs5536_set_dmamode - DMA timing setup
  152. * @ap: ATA interface
  153. * @adev: Device being configured
  154. *
  155. */
  156. static void cs5536_set_dmamode(struct ata_port *ap, struct ata_device *adev)
  157. {
  158. static const u8 udma_timings[6] = {
  159. 0xc2, 0xc1, 0xc0, 0xc4, 0xc5, 0xc6,
  160. };
  161. static const u8 mwdma_timings[3] = {
  162. 0x67, 0x21, 0x20,
  163. };
  164. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  165. u32 etc;
  166. int mode = adev->dma_mode;
  167. int dshift = adev->devno ? IDE_D1_SHIFT : IDE_D0_SHIFT;
  168. cs5536_read(pdev, ETC, &etc);
  169. if (mode >= XFER_UDMA_0) {
  170. etc &= ~(IDE_DRV_MASK << dshift);
  171. etc |= udma_timings[mode - XFER_UDMA_0] << dshift;
  172. } else { /* MWDMA */
  173. etc &= ~(IDE_ETC_UDMA_MASK << dshift);
  174. cs5536_program_dtc(adev, mwdma_timings[mode - XFER_MW_DMA_0]);
  175. }
  176. cs5536_write(pdev, ETC, etc);
  177. }
  178. static struct scsi_host_template cs5536_sht = {
  179. ATA_BMDMA_SHT(DRV_NAME),
  180. };
  181. static struct ata_port_operations cs5536_port_ops = {
  182. .inherits = &ata_bmdma32_port_ops,
  183. .cable_detect = cs5536_cable_detect,
  184. .set_piomode = cs5536_set_piomode,
  185. .set_dmamode = cs5536_set_dmamode,
  186. };
  187. /**
  188. * cs5536_init_one
  189. * @dev: PCI device
  190. * @id: Entry in match table
  191. *
  192. */
  193. static int cs5536_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  194. {
  195. static const struct ata_port_info info = {
  196. .flags = ATA_FLAG_SLAVE_POSS,
  197. .pio_mask = ATA_PIO4,
  198. .mwdma_mask = ATA_MWDMA2,
  199. .udma_mask = ATA_UDMA5,
  200. .port_ops = &cs5536_port_ops,
  201. };
  202. const struct ata_port_info *ppi[] = { &info, &ata_dummy_port_info };
  203. u32 cfg;
  204. if (use_msr)
  205. printk(KERN_ERR DRV_NAME ": Using MSR regs instead of PCI\n");
  206. cs5536_read(dev, CFG, &cfg);
  207. if ((cfg & IDE_CFG_CHANEN) == 0) {
  208. printk(KERN_ERR DRV_NAME ": disabled by BIOS\n");
  209. return -ENODEV;
  210. }
  211. return ata_pci_bmdma_init_one(dev, ppi, &cs5536_sht, NULL, 0);
  212. }
  213. static const struct pci_device_id cs5536[] = {
  214. { PCI_VDEVICE(AMD, PCI_DEVICE_ID_AMD_CS5536_IDE), },
  215. { },
  216. };
  217. static struct pci_driver cs5536_pci_driver = {
  218. .name = DRV_NAME,
  219. .id_table = cs5536,
  220. .probe = cs5536_init_one,
  221. .remove = ata_pci_remove_one,
  222. #ifdef CONFIG_PM
  223. .suspend = ata_pci_device_suspend,
  224. .resume = ata_pci_device_resume,
  225. #endif
  226. };
  227. static int __init cs5536_init(void)
  228. {
  229. return pci_register_driver(&cs5536_pci_driver);
  230. }
  231. static void __exit cs5536_exit(void)
  232. {
  233. pci_unregister_driver(&cs5536_pci_driver);
  234. }
  235. MODULE_AUTHOR("Martin K. Petersen");
  236. MODULE_DESCRIPTION("low-level driver for the CS5536 IDE controller");
  237. MODULE_LICENSE("GPL");
  238. MODULE_DEVICE_TABLE(pci, cs5536);
  239. MODULE_VERSION(DRV_VERSION);
  240. module_init(cs5536_init);
  241. module_exit(cs5536_exit);