pata_cs5536.c 7.4 KB

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