pata_cs5520.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. /*
  2. * IDE tuning and bus mastering support for the CS5510/CS5520
  3. * chipsets
  4. *
  5. * The CS5510/CS5520 are slightly unusual devices. Unlike the
  6. * typical IDE controllers they do bus mastering with the drive in
  7. * PIO mode and smarter silicon.
  8. *
  9. * The practical upshot of this is that we must always tune the
  10. * drive for the right PIO mode. We must also ignore all the blacklists
  11. * and the drive bus mastering DMA information. Also to confuse matters
  12. * further we can do DMA on PIO only drives.
  13. *
  14. * DMA on the 5510 also requires we disable_hlt() during DMA on early
  15. * revisions.
  16. *
  17. * *** This driver is strictly experimental ***
  18. *
  19. * (c) Copyright Red Hat Inc 2002
  20. *
  21. * This program is free software; you can redistribute it and/or modify it
  22. * under the terms of the GNU General Public License as published by the
  23. * Free Software Foundation; either version 2, or (at your option) any
  24. * later version.
  25. *
  26. * This program is distributed in the hope that it will be useful, but
  27. * WITHOUT ANY WARRANTY; without even the implied warranty of
  28. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  29. * General Public License for more details.
  30. *
  31. * Documentation:
  32. * Not publically available.
  33. */
  34. #include <linux/kernel.h>
  35. #include <linux/module.h>
  36. #include <linux/pci.h>
  37. #include <linux/init.h>
  38. #include <linux/blkdev.h>
  39. #include <linux/delay.h>
  40. #include <scsi/scsi_host.h>
  41. #include <linux/libata.h>
  42. #define DRV_NAME "pata_cs5520"
  43. #define DRV_VERSION "0.6.4"
  44. struct pio_clocks
  45. {
  46. int address;
  47. int assert;
  48. int recovery;
  49. };
  50. static const struct pio_clocks cs5520_pio_clocks[]={
  51. {3, 6, 11},
  52. {2, 5, 6},
  53. {1, 4, 3},
  54. {1, 3, 2},
  55. {1, 2, 1}
  56. };
  57. /**
  58. * cs5520_set_timings - program PIO timings
  59. * @ap: ATA port
  60. * @adev: ATA device
  61. *
  62. * Program the PIO mode timings for the controller according to the pio
  63. * clocking table.
  64. */
  65. static void cs5520_set_timings(struct ata_port *ap, struct ata_device *adev, int pio)
  66. {
  67. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  68. int slave = adev->devno;
  69. pio -= XFER_PIO_0;
  70. /* Channel command timing */
  71. pci_write_config_byte(pdev, 0x62 + ap->port_no,
  72. (cs5520_pio_clocks[pio].recovery << 4) |
  73. (cs5520_pio_clocks[pio].assert));
  74. /* FIXME: should these use address ? */
  75. /* Read command timing */
  76. pci_write_config_byte(pdev, 0x64 + 4*ap->port_no + slave,
  77. (cs5520_pio_clocks[pio].recovery << 4) |
  78. (cs5520_pio_clocks[pio].assert));
  79. /* Write command timing */
  80. pci_write_config_byte(pdev, 0x66 + 4*ap->port_no + slave,
  81. (cs5520_pio_clocks[pio].recovery << 4) |
  82. (cs5520_pio_clocks[pio].assert));
  83. }
  84. /**
  85. * cs5520_enable_dma - turn on DMA bits
  86. *
  87. * Turn on the DMA bits for this disk. Needed because the BIOS probably
  88. * has not done the work for us. Belongs in the core SATA code.
  89. */
  90. static void cs5520_enable_dma(struct ata_port *ap, struct ata_device *adev)
  91. {
  92. /* Set the DMA enable/disable flag */
  93. u8 reg = ioread8(ap->ioaddr.bmdma_addr + 0x02);
  94. reg |= 1<<(adev->devno + 5);
  95. iowrite8(reg, ap->ioaddr.bmdma_addr + 0x02);
  96. }
  97. /**
  98. * cs5520_set_dmamode - program DMA timings
  99. * @ap: ATA port
  100. * @adev: ATA device
  101. *
  102. * Program the DMA mode timings for the controller according to the pio
  103. * clocking table. Note that this device sets the DMA timings to PIO
  104. * mode values. This may seem bizarre but the 5520 architecture talks
  105. * PIO mode to the disk and DMA mode to the controller so the underlying
  106. * transfers are PIO timed.
  107. */
  108. static void cs5520_set_dmamode(struct ata_port *ap, struct ata_device *adev)
  109. {
  110. static const int dma_xlate[3] = { XFER_PIO_0, XFER_PIO_3, XFER_PIO_4 };
  111. cs5520_set_timings(ap, adev, dma_xlate[adev->dma_mode]);
  112. cs5520_enable_dma(ap, adev);
  113. }
  114. /**
  115. * cs5520_set_piomode - program PIO timings
  116. * @ap: ATA port
  117. * @adev: ATA device
  118. *
  119. * Program the PIO mode timings for the controller according to the pio
  120. * clocking table. We know pio_mode will equal dma_mode because of the
  121. * CS5520 architecture. At least once we turned DMA on and wrote a
  122. * mode setter.
  123. */
  124. static void cs5520_set_piomode(struct ata_port *ap, struct ata_device *adev)
  125. {
  126. cs5520_set_timings(ap, adev, adev->pio_mode);
  127. }
  128. static struct scsi_host_template cs5520_sht = {
  129. .module = THIS_MODULE,
  130. .name = DRV_NAME,
  131. .ioctl = ata_scsi_ioctl,
  132. .queuecommand = ata_scsi_queuecmd,
  133. .can_queue = ATA_DEF_QUEUE,
  134. .this_id = ATA_SHT_THIS_ID,
  135. .sg_tablesize = LIBATA_MAX_PRD,
  136. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  137. .emulated = ATA_SHT_EMULATED,
  138. .use_clustering = ATA_SHT_USE_CLUSTERING,
  139. .proc_name = DRV_NAME,
  140. .dma_boundary = ATA_DMA_BOUNDARY,
  141. .slave_configure = ata_scsi_slave_config,
  142. .slave_destroy = ata_scsi_slave_destroy,
  143. .bios_param = ata_std_bios_param,
  144. };
  145. static struct ata_port_operations cs5520_port_ops = {
  146. .port_disable = ata_port_disable,
  147. .set_piomode = cs5520_set_piomode,
  148. .set_dmamode = cs5520_set_dmamode,
  149. .tf_load = ata_tf_load,
  150. .tf_read = ata_tf_read,
  151. .check_status = ata_check_status,
  152. .exec_command = ata_exec_command,
  153. .dev_select = ata_std_dev_select,
  154. .freeze = ata_bmdma_freeze,
  155. .thaw = ata_bmdma_thaw,
  156. .error_handler = ata_bmdma_error_handler,
  157. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  158. .cable_detect = ata_cable_40wire,
  159. .bmdma_setup = ata_bmdma_setup,
  160. .bmdma_start = ata_bmdma_start,
  161. .bmdma_stop = ata_bmdma_stop,
  162. .bmdma_status = ata_bmdma_status,
  163. .qc_prep = ata_qc_prep,
  164. .qc_issue = ata_qc_issue_prot,
  165. .data_xfer = ata_data_xfer,
  166. .irq_clear = ata_bmdma_irq_clear,
  167. .irq_on = ata_irq_on,
  168. .irq_ack = ata_irq_ack,
  169. .port_start = ata_port_start,
  170. };
  171. static int __devinit cs5520_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
  172. {
  173. struct ata_port_info pi = {
  174. .flags = ATA_FLAG_SLAVE_POSS,
  175. .pio_mask = 0x1f,
  176. .port_ops = &cs5520_port_ops,
  177. };
  178. const struct ata_port_info *ppi[2];
  179. u8 pcicfg;
  180. void *iomap[5];
  181. struct ata_host *host;
  182. struct ata_ioports *ioaddr;
  183. int i, rc;
  184. /* IDE port enable bits */
  185. pci_read_config_byte(pdev, 0x60, &pcicfg);
  186. /* Check if the ATA ports are enabled */
  187. if ((pcicfg & 3) == 0)
  188. return -ENODEV;
  189. ppi[0] = ppi[1] = &ata_dummy_port_info;
  190. if (pcicfg & 1)
  191. ppi[0] = &pi;
  192. if (pcicfg & 2)
  193. ppi[1] = &pi;
  194. if ((pcicfg & 0x40) == 0) {
  195. dev_printk(KERN_WARNING, &pdev->dev,
  196. "DMA mode disabled. Enabling.\n");
  197. pci_write_config_byte(pdev, 0x60, pcicfg | 0x40);
  198. }
  199. pi.mwdma_mask = id->driver_data;
  200. host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
  201. if (!host)
  202. return -ENOMEM;
  203. /* Perform set up for DMA */
  204. if (pci_enable_device_bars(pdev, 1<<2)) {
  205. printk(KERN_ERR DRV_NAME ": unable to configure BAR2.\n");
  206. return -ENODEV;
  207. }
  208. if (pci_set_dma_mask(pdev, DMA_32BIT_MASK)) {
  209. printk(KERN_ERR DRV_NAME ": unable to configure DMA mask.\n");
  210. return -ENODEV;
  211. }
  212. if (pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK)) {
  213. printk(KERN_ERR DRV_NAME ": unable to configure consistent DMA mask.\n");
  214. return -ENODEV;
  215. }
  216. /* Map IO ports and initialize host accordingly */
  217. iomap[0] = devm_ioport_map(&pdev->dev, 0x1F0, 8);
  218. iomap[1] = devm_ioport_map(&pdev->dev, 0x3F6, 1);
  219. iomap[2] = devm_ioport_map(&pdev->dev, 0x170, 8);
  220. iomap[3] = devm_ioport_map(&pdev->dev, 0x376, 1);
  221. iomap[4] = pcim_iomap(pdev, 2, 0);
  222. if (!iomap[0] || !iomap[1] || !iomap[2] || !iomap[3] || !iomap[4])
  223. return -ENOMEM;
  224. ioaddr = &host->ports[0]->ioaddr;
  225. ioaddr->cmd_addr = iomap[0];
  226. ioaddr->ctl_addr = iomap[1];
  227. ioaddr->altstatus_addr = iomap[1];
  228. ioaddr->bmdma_addr = iomap[4];
  229. ata_std_ports(ioaddr);
  230. ioaddr = &host->ports[1]->ioaddr;
  231. ioaddr->cmd_addr = iomap[2];
  232. ioaddr->ctl_addr = iomap[3];
  233. ioaddr->altstatus_addr = iomap[3];
  234. ioaddr->bmdma_addr = iomap[4] + 8;
  235. ata_std_ports(ioaddr);
  236. /* activate the host */
  237. pci_set_master(pdev);
  238. rc = ata_host_start(host);
  239. if (rc)
  240. return rc;
  241. for (i = 0; i < 2; i++) {
  242. static const int irq[] = { 14, 15 };
  243. struct ata_port *ap = host->ports[0];
  244. if (ata_port_is_dummy(ap))
  245. continue;
  246. rc = devm_request_irq(&pdev->dev, irq[ap->port_no],
  247. ata_interrupt, 0, DRV_NAME, host);
  248. if (rc)
  249. return rc;
  250. }
  251. return ata_host_register(host, &cs5520_sht);
  252. }
  253. /**
  254. * cs5520_remove_one - device unload
  255. * @pdev: PCI device being removed
  256. *
  257. * Handle an unplug/unload event for a PCI device. Unload the
  258. * PCI driver but do not use the default handler as we manage
  259. * resources ourself and *MUST NOT* disable the device as it has
  260. * other functions.
  261. */
  262. static void __devexit cs5520_remove_one(struct pci_dev *pdev)
  263. {
  264. struct device *dev = pci_dev_to_dev(pdev);
  265. struct ata_host *host = dev_get_drvdata(dev);
  266. ata_host_detach(host);
  267. }
  268. #ifdef CONFIG_PM
  269. /**
  270. * cs5520_reinit_one - device resume
  271. * @pdev: PCI device
  272. *
  273. * Do any reconfiguration work needed by a resume from RAM. We need
  274. * to restore DMA mode support on BIOSen which disabled it
  275. */
  276. static int cs5520_reinit_one(struct pci_dev *pdev)
  277. {
  278. u8 pcicfg;
  279. pci_read_config_byte(pdev, 0x60, &pcicfg);
  280. if ((pcicfg & 0x40) == 0)
  281. pci_write_config_byte(pdev, 0x60, pcicfg | 0x40);
  282. return ata_pci_device_resume(pdev);
  283. }
  284. /**
  285. * cs5520_pci_device_suspend - device suspend
  286. * @pdev: PCI device
  287. *
  288. * We have to cut and waste bits from the standard method because
  289. * the 5520 is a bit odd and not just a pure ATA device. As a result
  290. * we must not disable it. The needed code is short and this avoids
  291. * chip specific mess in the core code.
  292. */
  293. static int cs5520_pci_device_suspend(struct pci_dev *pdev, pm_message_t mesg)
  294. {
  295. struct ata_host *host = dev_get_drvdata(&pdev->dev);
  296. int rc = 0;
  297. rc = ata_host_suspend(host, mesg);
  298. if (rc)
  299. return rc;
  300. pci_save_state(pdev);
  301. return 0;
  302. }
  303. #endif /* CONFIG_PM */
  304. /* For now keep DMA off. We can set it for all but A rev CS5510 once the
  305. core ATA code can handle it */
  306. static const struct pci_device_id pata_cs5520[] = {
  307. { PCI_VDEVICE(CYRIX, PCI_DEVICE_ID_CYRIX_5510), },
  308. { PCI_VDEVICE(CYRIX, PCI_DEVICE_ID_CYRIX_5520), },
  309. { },
  310. };
  311. static struct pci_driver cs5520_pci_driver = {
  312. .name = DRV_NAME,
  313. .id_table = pata_cs5520,
  314. .probe = cs5520_init_one,
  315. .remove = cs5520_remove_one,
  316. #ifdef CONFIG_PM
  317. .suspend = cs5520_pci_device_suspend,
  318. .resume = cs5520_reinit_one,
  319. #endif
  320. };
  321. static int __init cs5520_init(void)
  322. {
  323. return pci_register_driver(&cs5520_pci_driver);
  324. }
  325. static void __exit cs5520_exit(void)
  326. {
  327. pci_unregister_driver(&cs5520_pci_driver);
  328. }
  329. MODULE_AUTHOR("Alan Cox");
  330. MODULE_DESCRIPTION("low-level driver for Cyrix CS5510/5520");
  331. MODULE_LICENSE("GPL");
  332. MODULE_DEVICE_TABLE(pci, pata_cs5520);
  333. MODULE_VERSION(DRV_VERSION);
  334. module_init(cs5520_init);
  335. module_exit(cs5520_exit);