pata_sil680.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474
  1. /*
  2. * pata_sil680.c - SIL680 PATA for new ATA layer
  3. * (C) 2005 Red Hat Inc
  4. * Alan Cox <alan@redhat.com>
  5. *
  6. * based upon
  7. *
  8. * linux/drivers/ide/pci/siimage.c Version 1.07 Nov 30, 2003
  9. *
  10. * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
  11. * Copyright (C) 2003 Red Hat <alan@redhat.com>
  12. *
  13. * May be copied or modified under the terms of the GNU General Public License
  14. *
  15. * Documentation publically available.
  16. *
  17. * If you have strange problems with nVidia chipset systems please
  18. * see the SI support documentation and update your system BIOS
  19. * if necessary
  20. *
  21. * TODO
  22. * If we know all our devices are LBA28 (or LBA28 sized) we could use
  23. * the command fifo mode.
  24. */
  25. #include <linux/kernel.h>
  26. #include <linux/module.h>
  27. #include <linux/pci.h>
  28. #include <linux/init.h>
  29. #include <linux/blkdev.h>
  30. #include <linux/delay.h>
  31. #include <scsi/scsi_host.h>
  32. #include <linux/libata.h>
  33. #define DRV_NAME "pata_sil680"
  34. #define DRV_VERSION "0.4.7"
  35. #define SIL680_MMIO_BAR 5
  36. /**
  37. * sil680_selreg - return register base
  38. * @hwif: interface
  39. * @r: config offset
  40. *
  41. * Turn a config register offset into the right address in either
  42. * PCI space or MMIO space to access the control register in question
  43. * Thankfully this is a configuration operation so isnt performance
  44. * criticial.
  45. */
  46. static unsigned long sil680_selreg(struct ata_port *ap, int r)
  47. {
  48. unsigned long base = 0xA0 + r;
  49. base += (ap->port_no << 4);
  50. return base;
  51. }
  52. /**
  53. * sil680_seldev - return register base
  54. * @hwif: interface
  55. * @r: config offset
  56. *
  57. * Turn a config register offset into the right address in either
  58. * PCI space or MMIO space to access the control register in question
  59. * including accounting for the unit shift.
  60. */
  61. static unsigned long sil680_seldev(struct ata_port *ap, struct ata_device *adev, int r)
  62. {
  63. unsigned long base = 0xA0 + r;
  64. base += (ap->port_no << 4);
  65. base |= adev->devno ? 2 : 0;
  66. return base;
  67. }
  68. /**
  69. * sil680_cable_detect - cable detection
  70. * @ap: ATA port
  71. *
  72. * Perform cable detection. The SIL680 stores this in PCI config
  73. * space for us.
  74. */
  75. static int sil680_cable_detect(struct ata_port *ap) {
  76. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  77. unsigned long addr = sil680_selreg(ap, 0);
  78. u8 ata66;
  79. pci_read_config_byte(pdev, addr, &ata66);
  80. if (ata66 & 1)
  81. return ATA_CBL_PATA80;
  82. else
  83. return ATA_CBL_PATA40;
  84. }
  85. /**
  86. * sil680_bus_reset - reset the SIL680 bus
  87. * @link: ATA link to reset
  88. * @deadline: deadline jiffies for the operation
  89. *
  90. * Perform the SIL680 housekeeping when doing an ATA bus reset
  91. */
  92. static int sil680_bus_reset(struct ata_link *link, unsigned int *classes,
  93. unsigned long deadline)
  94. {
  95. struct ata_port *ap = link->ap;
  96. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  97. unsigned long addr = sil680_selreg(ap, 0);
  98. u8 reset;
  99. pci_read_config_byte(pdev, addr, &reset);
  100. pci_write_config_byte(pdev, addr, reset | 0x03);
  101. udelay(25);
  102. pci_write_config_byte(pdev, addr, reset);
  103. return ata_std_softreset(link, classes, deadline);
  104. }
  105. static void sil680_error_handler(struct ata_port *ap)
  106. {
  107. ata_bmdma_drive_eh(ap, ata_std_prereset, sil680_bus_reset, NULL, ata_std_postreset);
  108. }
  109. /**
  110. * sil680_set_piomode - set initial PIO mode data
  111. * @ap: ATA interface
  112. * @adev: ATA device
  113. *
  114. * Program the SIL680 registers for PIO mode. Note that the task speed
  115. * registers are shared between the devices so we must pick the lowest
  116. * mode for command work.
  117. */
  118. static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev)
  119. {
  120. static u16 speed_p[5] = { 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1 };
  121. static u16 speed_t[5] = { 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1 };
  122. unsigned long tfaddr = sil680_selreg(ap, 0x02);
  123. unsigned long addr = sil680_seldev(ap, adev, 0x04);
  124. unsigned long addr_mask = 0x80 + 4 * ap->port_no;
  125. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  126. int pio = adev->pio_mode - XFER_PIO_0;
  127. int lowest_pio = pio;
  128. int port_shift = 4 * adev->devno;
  129. u16 reg;
  130. u8 mode;
  131. struct ata_device *pair = ata_dev_pair(adev);
  132. if (pair != NULL && adev->pio_mode > pair->pio_mode)
  133. lowest_pio = pair->pio_mode - XFER_PIO_0;
  134. pci_write_config_word(pdev, addr, speed_p[pio]);
  135. pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]);
  136. pci_read_config_word(pdev, tfaddr-2, &reg);
  137. pci_read_config_byte(pdev, addr_mask, &mode);
  138. reg &= ~0x0200; /* Clear IORDY */
  139. mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */
  140. if (ata_pio_need_iordy(adev)) {
  141. reg |= 0x0200; /* Enable IORDY */
  142. mode |= 1 << port_shift;
  143. }
  144. pci_write_config_word(pdev, tfaddr-2, reg);
  145. pci_write_config_byte(pdev, addr_mask, mode);
  146. }
  147. /**
  148. * sil680_set_dmamode - set initial DMA mode data
  149. * @ap: ATA interface
  150. * @adev: ATA device
  151. *
  152. * Program the MWDMA/UDMA modes for the sil680 k
  153. * chipset. The MWDMA mode values are pulled from a lookup table
  154. * while the chipset uses mode number for UDMA.
  155. */
  156. static void sil680_set_dmamode(struct ata_port *ap, struct ata_device *adev)
  157. {
  158. static u8 ultra_table[2][7] = {
  159. { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01, 0xFF }, /* 100MHz */
  160. { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 }, /* 133Mhz */
  161. };
  162. static u16 dma_table[3] = { 0x2208, 0x10C2, 0x10C1 };
  163. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  164. unsigned long ma = sil680_seldev(ap, adev, 0x08);
  165. unsigned long ua = sil680_seldev(ap, adev, 0x0C);
  166. unsigned long addr_mask = 0x80 + 4 * ap->port_no;
  167. int port_shift = adev->devno * 4;
  168. u8 scsc, mode;
  169. u16 multi, ultra;
  170. pci_read_config_byte(pdev, 0x8A, &scsc);
  171. pci_read_config_byte(pdev, addr_mask, &mode);
  172. pci_read_config_word(pdev, ma, &multi);
  173. pci_read_config_word(pdev, ua, &ultra);
  174. /* Mask timing bits */
  175. ultra &= ~0x3F;
  176. mode &= ~(0x03 << port_shift);
  177. /* Extract scsc */
  178. scsc = (scsc & 0x30) ? 1: 0;
  179. if (adev->dma_mode >= XFER_UDMA_0) {
  180. multi = 0x10C1;
  181. ultra |= ultra_table[scsc][adev->dma_mode - XFER_UDMA_0];
  182. mode |= (0x03 << port_shift);
  183. } else {
  184. multi = dma_table[adev->dma_mode - XFER_MW_DMA_0];
  185. mode |= (0x02 << port_shift);
  186. }
  187. pci_write_config_byte(pdev, addr_mask, mode);
  188. pci_write_config_word(pdev, ma, multi);
  189. pci_write_config_word(pdev, ua, ultra);
  190. }
  191. static struct scsi_host_template sil680_sht = {
  192. .module = THIS_MODULE,
  193. .name = DRV_NAME,
  194. .ioctl = ata_scsi_ioctl,
  195. .queuecommand = ata_scsi_queuecmd,
  196. .can_queue = ATA_DEF_QUEUE,
  197. .this_id = ATA_SHT_THIS_ID,
  198. .sg_tablesize = LIBATA_MAX_PRD,
  199. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  200. .emulated = ATA_SHT_EMULATED,
  201. .use_clustering = ATA_SHT_USE_CLUSTERING,
  202. .proc_name = DRV_NAME,
  203. .dma_boundary = ATA_DMA_BOUNDARY,
  204. .slave_configure = ata_scsi_slave_config,
  205. .slave_destroy = ata_scsi_slave_destroy,
  206. .bios_param = ata_std_bios_param,
  207. };
  208. static struct ata_port_operations sil680_port_ops = {
  209. .set_piomode = sil680_set_piomode,
  210. .set_dmamode = sil680_set_dmamode,
  211. .mode_filter = ata_pci_default_filter,
  212. .tf_load = ata_tf_load,
  213. .tf_read = ata_tf_read,
  214. .check_status = ata_check_status,
  215. .exec_command = ata_exec_command,
  216. .dev_select = ata_std_dev_select,
  217. .freeze = ata_bmdma_freeze,
  218. .thaw = ata_bmdma_thaw,
  219. .error_handler = sil680_error_handler,
  220. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  221. .cable_detect = sil680_cable_detect,
  222. .bmdma_setup = ata_bmdma_setup,
  223. .bmdma_start = ata_bmdma_start,
  224. .bmdma_stop = ata_bmdma_stop,
  225. .bmdma_status = ata_bmdma_status,
  226. .qc_prep = ata_qc_prep,
  227. .qc_issue = ata_qc_issue_prot,
  228. .data_xfer = ata_data_xfer,
  229. .irq_handler = ata_interrupt,
  230. .irq_clear = ata_bmdma_irq_clear,
  231. .irq_on = ata_irq_on,
  232. .port_start = ata_sff_port_start,
  233. };
  234. /**
  235. * sil680_init_chip - chip setup
  236. * @pdev: PCI device
  237. *
  238. * Perform all the chip setup which must be done both when the device
  239. * is powered up on boot and when we resume in case we resumed from RAM.
  240. * Returns the final clock settings.
  241. */
  242. static u8 sil680_init_chip(struct pci_dev *pdev, int *try_mmio)
  243. {
  244. u32 class_rev = 0;
  245. u8 tmpbyte = 0;
  246. pci_read_config_dword(pdev, PCI_CLASS_REVISION, &class_rev);
  247. class_rev &= 0xff;
  248. /* FIXME: double check */
  249. pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE, (class_rev) ? 1 : 255);
  250. pci_write_config_byte(pdev, 0x80, 0x00);
  251. pci_write_config_byte(pdev, 0x84, 0x00);
  252. pci_read_config_byte(pdev, 0x8A, &tmpbyte);
  253. dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
  254. tmpbyte & 1, tmpbyte & 0x30);
  255. *try_mmio = (tmpbyte & 1) || pci_resource_start(pdev, 5);
  256. switch(tmpbyte & 0x30) {
  257. case 0x00:
  258. /* 133 clock attempt to force it on */
  259. pci_write_config_byte(pdev, 0x8A, tmpbyte|0x10);
  260. break;
  261. case 0x30:
  262. /* if clocking is disabled */
  263. /* 133 clock attempt to force it on */
  264. pci_write_config_byte(pdev, 0x8A, tmpbyte & ~0x20);
  265. break;
  266. case 0x10:
  267. /* 133 already */
  268. break;
  269. case 0x20:
  270. /* BIOS set PCI x2 clocking */
  271. break;
  272. }
  273. pci_read_config_byte(pdev, 0x8A, &tmpbyte);
  274. dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
  275. tmpbyte & 1, tmpbyte & 0x30);
  276. pci_write_config_byte(pdev, 0xA1, 0x72);
  277. pci_write_config_word(pdev, 0xA2, 0x328A);
  278. pci_write_config_dword(pdev, 0xA4, 0x62DD62DD);
  279. pci_write_config_dword(pdev, 0xA8, 0x43924392);
  280. pci_write_config_dword(pdev, 0xAC, 0x40094009);
  281. pci_write_config_byte(pdev, 0xB1, 0x72);
  282. pci_write_config_word(pdev, 0xB2, 0x328A);
  283. pci_write_config_dword(pdev, 0xB4, 0x62DD62DD);
  284. pci_write_config_dword(pdev, 0xB8, 0x43924392);
  285. pci_write_config_dword(pdev, 0xBC, 0x40094009);
  286. switch(tmpbyte & 0x30) {
  287. case 0x00: printk(KERN_INFO "sil680: 100MHz clock.\n");break;
  288. case 0x10: printk(KERN_INFO "sil680: 133MHz clock.\n");break;
  289. case 0x20: printk(KERN_INFO "sil680: Using PCI clock.\n");break;
  290. /* This last case is _NOT_ ok */
  291. case 0x30: printk(KERN_ERR "sil680: Clock disabled ?\n");
  292. }
  293. return tmpbyte & 0x30;
  294. }
  295. static int __devinit sil680_init_one(struct pci_dev *pdev,
  296. const struct pci_device_id *id)
  297. {
  298. static const struct ata_port_info info = {
  299. .sht = &sil680_sht,
  300. .flags = ATA_FLAG_SLAVE_POSS,
  301. .pio_mask = 0x1f,
  302. .mwdma_mask = 0x07,
  303. .udma_mask = ATA_UDMA6,
  304. .port_ops = &sil680_port_ops
  305. };
  306. static const struct ata_port_info info_slow = {
  307. .sht = &sil680_sht,
  308. .flags = ATA_FLAG_SLAVE_POSS,
  309. .pio_mask = 0x1f,
  310. .mwdma_mask = 0x07,
  311. .udma_mask = ATA_UDMA5,
  312. .port_ops = &sil680_port_ops
  313. };
  314. const struct ata_port_info *ppi[] = { &info, NULL };
  315. static int printed_version;
  316. struct ata_host *host;
  317. void __iomem *mmio_base;
  318. int rc, try_mmio;
  319. if (!printed_version++)
  320. dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
  321. switch (sil680_init_chip(pdev, &try_mmio)) {
  322. case 0:
  323. ppi[0] = &info_slow;
  324. break;
  325. case 0x30:
  326. return -ENODEV;
  327. }
  328. if (!try_mmio)
  329. goto use_ioports;
  330. /* Try to acquire MMIO resources and fallback to PIO if
  331. * that fails
  332. */
  333. rc = pcim_enable_device(pdev);
  334. if (rc)
  335. return rc;
  336. rc = pcim_iomap_regions(pdev, 1 << SIL680_MMIO_BAR, DRV_NAME);
  337. if (rc)
  338. goto use_ioports;
  339. /* Allocate host and set it up */
  340. host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
  341. if (!host)
  342. return -ENOMEM;
  343. host->iomap = pcim_iomap_table(pdev);
  344. /* Setup DMA masks */
  345. rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
  346. if (rc)
  347. return rc;
  348. rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
  349. if (rc)
  350. return rc;
  351. pci_set_master(pdev);
  352. /* Get MMIO base and initialize port addresses */
  353. mmio_base = host->iomap[SIL680_MMIO_BAR];
  354. host->ports[0]->ioaddr.bmdma_addr = mmio_base + 0x00;
  355. host->ports[0]->ioaddr.cmd_addr = mmio_base + 0x80;
  356. host->ports[0]->ioaddr.ctl_addr = mmio_base + 0x8a;
  357. host->ports[0]->ioaddr.altstatus_addr = mmio_base + 0x8a;
  358. ata_std_ports(&host->ports[0]->ioaddr);
  359. host->ports[1]->ioaddr.bmdma_addr = mmio_base + 0x08;
  360. host->ports[1]->ioaddr.cmd_addr = mmio_base + 0xc0;
  361. host->ports[1]->ioaddr.ctl_addr = mmio_base + 0xca;
  362. host->ports[1]->ioaddr.altstatus_addr = mmio_base + 0xca;
  363. ata_std_ports(&host->ports[1]->ioaddr);
  364. /* Register & activate */
  365. return ata_host_activate(host, pdev->irq, ata_interrupt, IRQF_SHARED,
  366. &sil680_sht);
  367. use_ioports:
  368. return ata_pci_init_one(pdev, ppi);
  369. }
  370. #ifdef CONFIG_PM
  371. static int sil680_reinit_one(struct pci_dev *pdev)
  372. {
  373. int try_mmio;
  374. sil680_init_chip(pdev, &try_mmio);
  375. return ata_pci_device_resume(pdev);
  376. }
  377. #endif
  378. static const struct pci_device_id sil680[] = {
  379. { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), },
  380. { },
  381. };
  382. static struct pci_driver sil680_pci_driver = {
  383. .name = DRV_NAME,
  384. .id_table = sil680,
  385. .probe = sil680_init_one,
  386. .remove = ata_pci_remove_one,
  387. #ifdef CONFIG_PM
  388. .suspend = ata_pci_device_suspend,
  389. .resume = sil680_reinit_one,
  390. #endif
  391. };
  392. static int __init sil680_init(void)
  393. {
  394. return pci_register_driver(&sil680_pci_driver);
  395. }
  396. static void __exit sil680_exit(void)
  397. {
  398. pci_unregister_driver(&sil680_pci_driver);
  399. }
  400. MODULE_AUTHOR("Alan Cox");
  401. MODULE_DESCRIPTION("low-level driver for SI680 PATA");
  402. MODULE_LICENSE("GPL");
  403. MODULE_DEVICE_TABLE(pci, sil680);
  404. MODULE_VERSION(DRV_VERSION);
  405. module_init(sil680_init);
  406. module_exit(sil680_exit);