sata_via.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558
  1. /*
  2. * sata_via.c - VIA Serial ATA controllers
  3. *
  4. * Maintained by: Jeff Garzik <jgarzik@pobox.com>
  5. * Please ALWAYS copy linux-ide@vger.kernel.org
  6. on emails.
  7. *
  8. * Copyright 2003-2004 Red Hat, Inc. All rights reserved.
  9. * Copyright 2003-2004 Jeff Garzik
  10. *
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2, or (at your option)
  15. * any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; see the file COPYING. If not, write to
  24. * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  25. *
  26. *
  27. * libata documentation is available via 'make {ps|pdf}docs',
  28. * as Documentation/DocBook/libata.*
  29. *
  30. * Hardware documentation available under NDA.
  31. *
  32. *
  33. * To-do list:
  34. * - VT6421 PATA support
  35. *
  36. */
  37. #include <linux/kernel.h>
  38. #include <linux/module.h>
  39. #include <linux/pci.h>
  40. #include <linux/init.h>
  41. #include <linux/blkdev.h>
  42. #include <linux/delay.h>
  43. #include <linux/device.h>
  44. #include <scsi/scsi_host.h>
  45. #include <linux/libata.h>
  46. #define DRV_NAME "sata_via"
  47. #define DRV_VERSION "2.3"
  48. enum board_ids_enum {
  49. vt6420,
  50. vt6421,
  51. };
  52. enum {
  53. SATA_CHAN_ENAB = 0x40, /* SATA channel enable */
  54. SATA_INT_GATE = 0x41, /* SATA interrupt gating */
  55. SATA_NATIVE_MODE = 0x42, /* Native mode enable */
  56. PATA_UDMA_TIMING = 0xB3, /* PATA timing for DMA/ cable detect */
  57. PATA_PIO_TIMING = 0xAB, /* PATA timing register */
  58. PORT0 = (1 << 1),
  59. PORT1 = (1 << 0),
  60. ALL_PORTS = PORT0 | PORT1,
  61. NATIVE_MODE_ALL = (1 << 7) | (1 << 6) | (1 << 5) | (1 << 4),
  62. SATA_EXT_PHY = (1 << 6), /* 0==use PATA, 1==ext phy */
  63. };
  64. static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
  65. static int svia_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val);
  66. static int svia_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val);
  67. static void svia_noop_freeze(struct ata_port *ap);
  68. static void vt6420_error_handler(struct ata_port *ap);
  69. static int vt6421_pata_cable_detect(struct ata_port *ap);
  70. static void vt6421_set_pio_mode(struct ata_port *ap, struct ata_device *adev);
  71. static void vt6421_set_dma_mode(struct ata_port *ap, struct ata_device *adev);
  72. static const struct pci_device_id svia_pci_tbl[] = {
  73. { PCI_VDEVICE(VIA, 0x5337), vt6420 },
  74. { PCI_VDEVICE(VIA, 0x0591), vt6420 },
  75. { PCI_VDEVICE(VIA, 0x3149), vt6420 },
  76. { PCI_VDEVICE(VIA, 0x3249), vt6421 },
  77. { PCI_VDEVICE(VIA, 0x5287), vt6420 },
  78. { PCI_VDEVICE(VIA, 0x5372), vt6420 },
  79. { PCI_VDEVICE(VIA, 0x7372), vt6420 },
  80. { } /* terminate list */
  81. };
  82. static struct pci_driver svia_pci_driver = {
  83. .name = DRV_NAME,
  84. .id_table = svia_pci_tbl,
  85. .probe = svia_init_one,
  86. #ifdef CONFIG_PM
  87. .suspend = ata_pci_device_suspend,
  88. .resume = ata_pci_device_resume,
  89. #endif
  90. .remove = ata_pci_remove_one,
  91. };
  92. static struct scsi_host_template svia_sht = {
  93. .module = THIS_MODULE,
  94. .name = DRV_NAME,
  95. .ioctl = ata_scsi_ioctl,
  96. .queuecommand = ata_scsi_queuecmd,
  97. .can_queue = ATA_DEF_QUEUE,
  98. .this_id = ATA_SHT_THIS_ID,
  99. .sg_tablesize = LIBATA_MAX_PRD,
  100. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  101. .emulated = ATA_SHT_EMULATED,
  102. .use_clustering = ATA_SHT_USE_CLUSTERING,
  103. .proc_name = DRV_NAME,
  104. .dma_boundary = ATA_DMA_BOUNDARY,
  105. .slave_configure = ata_scsi_slave_config,
  106. .slave_destroy = ata_scsi_slave_destroy,
  107. .bios_param = ata_std_bios_param,
  108. };
  109. static const struct ata_port_operations vt6420_sata_ops = {
  110. .tf_load = ata_tf_load,
  111. .tf_read = ata_tf_read,
  112. .check_status = ata_check_status,
  113. .exec_command = ata_exec_command,
  114. .dev_select = ata_std_dev_select,
  115. .bmdma_setup = ata_bmdma_setup,
  116. .bmdma_start = ata_bmdma_start,
  117. .bmdma_stop = ata_bmdma_stop,
  118. .bmdma_status = ata_bmdma_status,
  119. .qc_prep = ata_qc_prep,
  120. .qc_issue = ata_qc_issue_prot,
  121. .data_xfer = ata_data_xfer,
  122. .freeze = svia_noop_freeze,
  123. .thaw = ata_bmdma_thaw,
  124. .error_handler = vt6420_error_handler,
  125. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  126. .irq_clear = ata_bmdma_irq_clear,
  127. .irq_on = ata_irq_on,
  128. .port_start = ata_port_start,
  129. };
  130. static const struct ata_port_operations vt6421_pata_ops = {
  131. .set_piomode = vt6421_set_pio_mode,
  132. .set_dmamode = vt6421_set_dma_mode,
  133. .tf_load = ata_tf_load,
  134. .tf_read = ata_tf_read,
  135. .check_status = ata_check_status,
  136. .exec_command = ata_exec_command,
  137. .dev_select = ata_std_dev_select,
  138. .bmdma_setup = ata_bmdma_setup,
  139. .bmdma_start = ata_bmdma_start,
  140. .bmdma_stop = ata_bmdma_stop,
  141. .bmdma_status = ata_bmdma_status,
  142. .qc_prep = ata_qc_prep,
  143. .qc_issue = ata_qc_issue_prot,
  144. .data_xfer = ata_data_xfer,
  145. .freeze = ata_bmdma_freeze,
  146. .thaw = ata_bmdma_thaw,
  147. .error_handler = ata_bmdma_error_handler,
  148. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  149. .cable_detect = vt6421_pata_cable_detect,
  150. .irq_clear = ata_bmdma_irq_clear,
  151. .irq_on = ata_irq_on,
  152. .port_start = ata_port_start,
  153. };
  154. static const struct ata_port_operations vt6421_sata_ops = {
  155. .tf_load = ata_tf_load,
  156. .tf_read = ata_tf_read,
  157. .check_status = ata_check_status,
  158. .exec_command = ata_exec_command,
  159. .dev_select = ata_std_dev_select,
  160. .bmdma_setup = ata_bmdma_setup,
  161. .bmdma_start = ata_bmdma_start,
  162. .bmdma_stop = ata_bmdma_stop,
  163. .bmdma_status = ata_bmdma_status,
  164. .qc_prep = ata_qc_prep,
  165. .qc_issue = ata_qc_issue_prot,
  166. .data_xfer = ata_data_xfer,
  167. .freeze = ata_bmdma_freeze,
  168. .thaw = ata_bmdma_thaw,
  169. .error_handler = ata_bmdma_error_handler,
  170. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  171. .cable_detect = ata_cable_sata,
  172. .irq_clear = ata_bmdma_irq_clear,
  173. .irq_on = ata_irq_on,
  174. .scr_read = svia_scr_read,
  175. .scr_write = svia_scr_write,
  176. .port_start = ata_port_start,
  177. };
  178. static const struct ata_port_info vt6420_port_info = {
  179. .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY,
  180. .pio_mask = 0x1f,
  181. .mwdma_mask = 0x07,
  182. .udma_mask = ATA_UDMA6,
  183. .port_ops = &vt6420_sata_ops,
  184. };
  185. static struct ata_port_info vt6421_sport_info = {
  186. .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY,
  187. .pio_mask = 0x1f,
  188. .mwdma_mask = 0x07,
  189. .udma_mask = ATA_UDMA6,
  190. .port_ops = &vt6421_sata_ops,
  191. };
  192. static struct ata_port_info vt6421_pport_info = {
  193. .flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_NO_LEGACY,
  194. .pio_mask = 0x1f,
  195. .mwdma_mask = 0,
  196. .udma_mask = ATA_UDMA6,
  197. .port_ops = &vt6421_pata_ops,
  198. };
  199. MODULE_AUTHOR("Jeff Garzik");
  200. MODULE_DESCRIPTION("SCSI low-level driver for VIA SATA controllers");
  201. MODULE_LICENSE("GPL");
  202. MODULE_DEVICE_TABLE(pci, svia_pci_tbl);
  203. MODULE_VERSION(DRV_VERSION);
  204. static int svia_scr_read(struct ata_port *ap, unsigned int sc_reg, u32 *val)
  205. {
  206. if (sc_reg > SCR_CONTROL)
  207. return -EINVAL;
  208. *val = ioread32(ap->ioaddr.scr_addr + (4 * sc_reg));
  209. return 0;
  210. }
  211. static int svia_scr_write(struct ata_port *ap, unsigned int sc_reg, u32 val)
  212. {
  213. if (sc_reg > SCR_CONTROL)
  214. return -EINVAL;
  215. iowrite32(val, ap->ioaddr.scr_addr + (4 * sc_reg));
  216. return 0;
  217. }
  218. static void svia_noop_freeze(struct ata_port *ap)
  219. {
  220. /* Some VIA controllers choke if ATA_NIEN is manipulated in
  221. * certain way. Leave it alone and just clear pending IRQ.
  222. */
  223. ata_chk_status(ap);
  224. ata_bmdma_irq_clear(ap);
  225. }
  226. /**
  227. * vt6420_prereset - prereset for vt6420
  228. * @link: target ATA link
  229. * @deadline: deadline jiffies for the operation
  230. *
  231. * SCR registers on vt6420 are pieces of shit and may hang the
  232. * whole machine completely if accessed with the wrong timing.
  233. * To avoid such catastrophe, vt6420 doesn't provide generic SCR
  234. * access operations, but uses SStatus and SControl only during
  235. * boot probing in controlled way.
  236. *
  237. * As the old (pre EH update) probing code is proven to work, we
  238. * strictly follow the access pattern.
  239. *
  240. * LOCKING:
  241. * Kernel thread context (may sleep)
  242. *
  243. * RETURNS:
  244. * 0 on success, -errno otherwise.
  245. */
  246. static int vt6420_prereset(struct ata_link *link, unsigned long deadline)
  247. {
  248. struct ata_port *ap = link->ap;
  249. struct ata_eh_context *ehc = &ap->link.eh_context;
  250. unsigned long timeout = jiffies + (HZ * 5);
  251. u32 sstatus, scontrol;
  252. int online;
  253. /* don't do any SCR stuff if we're not loading */
  254. if (!(ap->pflags & ATA_PFLAG_LOADING))
  255. goto skip_scr;
  256. /* Resume phy. This is the old SATA resume sequence */
  257. svia_scr_write(ap, SCR_CONTROL, 0x300);
  258. svia_scr_read(ap, SCR_CONTROL, &scontrol); /* flush */
  259. /* wait for phy to become ready, if necessary */
  260. do {
  261. msleep(200);
  262. svia_scr_read(ap, SCR_STATUS, &sstatus);
  263. if ((sstatus & 0xf) != 1)
  264. break;
  265. } while (time_before(jiffies, timeout));
  266. /* open code sata_print_link_status() */
  267. svia_scr_read(ap, SCR_STATUS, &sstatus);
  268. svia_scr_read(ap, SCR_CONTROL, &scontrol);
  269. online = (sstatus & 0xf) == 0x3;
  270. ata_port_printk(ap, KERN_INFO,
  271. "SATA link %s 1.5 Gbps (SStatus %X SControl %X)\n",
  272. online ? "up" : "down", sstatus, scontrol);
  273. /* SStatus is read one more time */
  274. svia_scr_read(ap, SCR_STATUS, &sstatus);
  275. if (!online) {
  276. /* tell EH to bail */
  277. ehc->i.action &= ~ATA_EH_RESET_MASK;
  278. return 0;
  279. }
  280. skip_scr:
  281. /* wait for !BSY */
  282. ata_wait_ready(ap, deadline);
  283. return 0;
  284. }
  285. static void vt6420_error_handler(struct ata_port *ap)
  286. {
  287. return ata_bmdma_drive_eh(ap, vt6420_prereset, ata_std_softreset,
  288. NULL, ata_std_postreset);
  289. }
  290. static int vt6421_pata_cable_detect(struct ata_port *ap)
  291. {
  292. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  293. u8 tmp;
  294. pci_read_config_byte(pdev, PATA_UDMA_TIMING, &tmp);
  295. if (tmp & 0x10)
  296. return ATA_CBL_PATA40;
  297. return ATA_CBL_PATA80;
  298. }
  299. static void vt6421_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
  300. {
  301. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  302. static const u8 pio_bits[] = { 0xA8, 0x65, 0x65, 0x31, 0x20 };
  303. pci_write_config_byte(pdev, PATA_PIO_TIMING, pio_bits[adev->pio_mode - XFER_PIO_0]);
  304. }
  305. static void vt6421_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
  306. {
  307. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  308. static const u8 udma_bits[] = { 0xEE, 0xE8, 0xE6, 0xE4, 0xE2, 0xE1, 0xE0, 0xE0 };
  309. pci_write_config_byte(pdev, PATA_UDMA_TIMING, udma_bits[adev->dma_mode - XFER_UDMA_0]);
  310. }
  311. static const unsigned int svia_bar_sizes[] = {
  312. 8, 4, 8, 4, 16, 256
  313. };
  314. static const unsigned int vt6421_bar_sizes[] = {
  315. 16, 16, 16, 16, 32, 128
  316. };
  317. static void __iomem * svia_scr_addr(void __iomem *addr, unsigned int port)
  318. {
  319. return addr + (port * 128);
  320. }
  321. static void __iomem * vt6421_scr_addr(void __iomem *addr, unsigned int port)
  322. {
  323. return addr + (port * 64);
  324. }
  325. static void vt6421_init_addrs(struct ata_port *ap)
  326. {
  327. void __iomem * const * iomap = ap->host->iomap;
  328. void __iomem *reg_addr = iomap[ap->port_no];
  329. void __iomem *bmdma_addr = iomap[4] + (ap->port_no * 8);
  330. struct ata_ioports *ioaddr = &ap->ioaddr;
  331. ioaddr->cmd_addr = reg_addr;
  332. ioaddr->altstatus_addr =
  333. ioaddr->ctl_addr = (void __iomem *)
  334. ((unsigned long)(reg_addr + 8) | ATA_PCI_CTL_OFS);
  335. ioaddr->bmdma_addr = bmdma_addr;
  336. ioaddr->scr_addr = vt6421_scr_addr(iomap[5], ap->port_no);
  337. ata_std_ports(ioaddr);
  338. ata_port_pbar_desc(ap, ap->port_no, -1, "port");
  339. ata_port_pbar_desc(ap, 4, ap->port_no * 8, "bmdma");
  340. }
  341. static int vt6420_prepare_host(struct pci_dev *pdev, struct ata_host **r_host)
  342. {
  343. const struct ata_port_info *ppi[] = { &vt6420_port_info, NULL };
  344. struct ata_host *host;
  345. int rc;
  346. rc = ata_pci_prepare_sff_host(pdev, ppi, &host);
  347. if (rc)
  348. return rc;
  349. *r_host = host;
  350. rc = pcim_iomap_regions(pdev, 1 << 5, DRV_NAME);
  351. if (rc) {
  352. dev_printk(KERN_ERR, &pdev->dev, "failed to iomap PCI BAR 5\n");
  353. return rc;
  354. }
  355. host->ports[0]->ioaddr.scr_addr = svia_scr_addr(host->iomap[5], 0);
  356. host->ports[1]->ioaddr.scr_addr = svia_scr_addr(host->iomap[5], 1);
  357. return 0;
  358. }
  359. static int vt6421_prepare_host(struct pci_dev *pdev, struct ata_host **r_host)
  360. {
  361. const struct ata_port_info *ppi[] =
  362. { &vt6421_sport_info, &vt6421_sport_info, &vt6421_pport_info };
  363. struct ata_host *host;
  364. int i, rc;
  365. *r_host = host = ata_host_alloc_pinfo(&pdev->dev, ppi, ARRAY_SIZE(ppi));
  366. if (!host) {
  367. dev_printk(KERN_ERR, &pdev->dev, "failed to allocate host\n");
  368. return -ENOMEM;
  369. }
  370. rc = pcim_iomap_regions(pdev, 0x3f, DRV_NAME);
  371. if (rc) {
  372. dev_printk(KERN_ERR, &pdev->dev, "failed to request/iomap "
  373. "PCI BARs (errno=%d)\n", rc);
  374. return rc;
  375. }
  376. host->iomap = pcim_iomap_table(pdev);
  377. for (i = 0; i < host->n_ports; i++)
  378. vt6421_init_addrs(host->ports[i]);
  379. rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
  380. if (rc)
  381. return rc;
  382. rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
  383. if (rc)
  384. return rc;
  385. return 0;
  386. }
  387. static void svia_configure(struct pci_dev *pdev)
  388. {
  389. u8 tmp8;
  390. pci_read_config_byte(pdev, PCI_INTERRUPT_LINE, &tmp8);
  391. dev_printk(KERN_INFO, &pdev->dev, "routed to hard irq line %d\n",
  392. (int) (tmp8 & 0xf0) == 0xf0 ? 0 : tmp8 & 0x0f);
  393. /* make sure SATA channels are enabled */
  394. pci_read_config_byte(pdev, SATA_CHAN_ENAB, &tmp8);
  395. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  396. dev_printk(KERN_DEBUG, &pdev->dev,
  397. "enabling SATA channels (0x%x)\n",
  398. (int) tmp8);
  399. tmp8 |= ALL_PORTS;
  400. pci_write_config_byte(pdev, SATA_CHAN_ENAB, tmp8);
  401. }
  402. /* make sure interrupts for each channel sent to us */
  403. pci_read_config_byte(pdev, SATA_INT_GATE, &tmp8);
  404. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  405. dev_printk(KERN_DEBUG, &pdev->dev,
  406. "enabling SATA channel interrupts (0x%x)\n",
  407. (int) tmp8);
  408. tmp8 |= ALL_PORTS;
  409. pci_write_config_byte(pdev, SATA_INT_GATE, tmp8);
  410. }
  411. /* make sure native mode is enabled */
  412. pci_read_config_byte(pdev, SATA_NATIVE_MODE, &tmp8);
  413. if ((tmp8 & NATIVE_MODE_ALL) != NATIVE_MODE_ALL) {
  414. dev_printk(KERN_DEBUG, &pdev->dev,
  415. "enabling SATA channel native mode (0x%x)\n",
  416. (int) tmp8);
  417. tmp8 |= NATIVE_MODE_ALL;
  418. pci_write_config_byte(pdev, SATA_NATIVE_MODE, tmp8);
  419. }
  420. }
  421. static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  422. {
  423. static int printed_version;
  424. unsigned int i;
  425. int rc;
  426. struct ata_host *host;
  427. int board_id = (int) ent->driver_data;
  428. const unsigned *bar_sizes;
  429. if (!printed_version++)
  430. dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
  431. rc = pcim_enable_device(pdev);
  432. if (rc)
  433. return rc;
  434. if (board_id == vt6420)
  435. bar_sizes = &svia_bar_sizes[0];
  436. else
  437. bar_sizes = &vt6421_bar_sizes[0];
  438. for (i = 0; i < ARRAY_SIZE(svia_bar_sizes); i++)
  439. if ((pci_resource_start(pdev, i) == 0) ||
  440. (pci_resource_len(pdev, i) < bar_sizes[i])) {
  441. dev_printk(KERN_ERR, &pdev->dev,
  442. "invalid PCI BAR %u (sz 0x%llx, val 0x%llx)\n",
  443. i,
  444. (unsigned long long)pci_resource_start(pdev, i),
  445. (unsigned long long)pci_resource_len(pdev, i));
  446. return -ENODEV;
  447. }
  448. if (board_id == vt6420)
  449. rc = vt6420_prepare_host(pdev, &host);
  450. else
  451. rc = vt6421_prepare_host(pdev, &host);
  452. if (rc)
  453. return rc;
  454. svia_configure(pdev);
  455. pci_set_master(pdev);
  456. return ata_host_activate(host, pdev->irq, ata_interrupt, IRQF_SHARED,
  457. &svia_sht);
  458. }
  459. static int __init svia_init(void)
  460. {
  461. return pci_register_driver(&svia_pci_driver);
  462. }
  463. static void __exit svia_exit(void)
  464. {
  465. pci_unregister_driver(&svia_pci_driver);
  466. }
  467. module_init(svia_init);
  468. module_exit(svia_exit);