sata_via.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  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. #include <asm/io.h>
  47. #define DRV_NAME "sata_via"
  48. #define DRV_VERSION "2.0"
  49. enum board_ids_enum {
  50. vt6420,
  51. vt6421,
  52. };
  53. enum {
  54. SATA_CHAN_ENAB = 0x40, /* SATA channel enable */
  55. SATA_INT_GATE = 0x41, /* SATA interrupt gating */
  56. SATA_NATIVE_MODE = 0x42, /* Native mode enable */
  57. SATA_PATA_SHARING = 0x49, /* PATA/SATA sharing func ctrl */
  58. PORT0 = (1 << 1),
  59. PORT1 = (1 << 0),
  60. ALL_PORTS = PORT0 | PORT1,
  61. N_PORTS = 2,
  62. NATIVE_MODE_ALL = (1 << 7) | (1 << 6) | (1 << 5) | (1 << 4),
  63. SATA_EXT_PHY = (1 << 6), /* 0==use PATA, 1==ext phy */
  64. SATA_2DEV = (1 << 5), /* SATA is master/slave */
  65. };
  66. static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
  67. static u32 svia_scr_read (struct ata_port *ap, unsigned int sc_reg);
  68. static void svia_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
  69. static void vt6420_error_handler(struct ata_port *ap);
  70. static const struct pci_device_id svia_pci_tbl[] = {
  71. { 0x1106, 0x3149, PCI_ANY_ID, PCI_ANY_ID, 0, 0, vt6420 },
  72. { 0x1106, 0x3249, PCI_ANY_ID, PCI_ANY_ID, 0, 0, vt6421 },
  73. { } /* terminate list */
  74. };
  75. static struct pci_driver svia_pci_driver = {
  76. .name = DRV_NAME,
  77. .id_table = svia_pci_tbl,
  78. .probe = svia_init_one,
  79. .remove = ata_pci_remove_one,
  80. };
  81. static struct scsi_host_template svia_sht = {
  82. .module = THIS_MODULE,
  83. .name = DRV_NAME,
  84. .ioctl = ata_scsi_ioctl,
  85. .queuecommand = ata_scsi_queuecmd,
  86. .can_queue = ATA_DEF_QUEUE,
  87. .this_id = ATA_SHT_THIS_ID,
  88. .sg_tablesize = LIBATA_MAX_PRD,
  89. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  90. .emulated = ATA_SHT_EMULATED,
  91. .use_clustering = ATA_SHT_USE_CLUSTERING,
  92. .proc_name = DRV_NAME,
  93. .dma_boundary = ATA_DMA_BOUNDARY,
  94. .slave_configure = ata_scsi_slave_config,
  95. .slave_destroy = ata_scsi_slave_destroy,
  96. .bios_param = ata_std_bios_param,
  97. };
  98. static const struct ata_port_operations vt6420_sata_ops = {
  99. .port_disable = ata_port_disable,
  100. .tf_load = ata_tf_load,
  101. .tf_read = ata_tf_read,
  102. .check_status = ata_check_status,
  103. .exec_command = ata_exec_command,
  104. .dev_select = ata_std_dev_select,
  105. .bmdma_setup = ata_bmdma_setup,
  106. .bmdma_start = ata_bmdma_start,
  107. .bmdma_stop = ata_bmdma_stop,
  108. .bmdma_status = ata_bmdma_status,
  109. .qc_prep = ata_qc_prep,
  110. .qc_issue = ata_qc_issue_prot,
  111. .data_xfer = ata_pio_data_xfer,
  112. .freeze = ata_bmdma_freeze,
  113. .thaw = ata_bmdma_thaw,
  114. .error_handler = vt6420_error_handler,
  115. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  116. .irq_handler = ata_interrupt,
  117. .irq_clear = ata_bmdma_irq_clear,
  118. .port_start = ata_port_start,
  119. .port_stop = ata_port_stop,
  120. .host_stop = ata_host_stop,
  121. };
  122. static const struct ata_port_operations vt6421_sata_ops = {
  123. .port_disable = ata_port_disable,
  124. .tf_load = ata_tf_load,
  125. .tf_read = ata_tf_read,
  126. .check_status = ata_check_status,
  127. .exec_command = ata_exec_command,
  128. .dev_select = ata_std_dev_select,
  129. .bmdma_setup = ata_bmdma_setup,
  130. .bmdma_start = ata_bmdma_start,
  131. .bmdma_stop = ata_bmdma_stop,
  132. .bmdma_status = ata_bmdma_status,
  133. .qc_prep = ata_qc_prep,
  134. .qc_issue = ata_qc_issue_prot,
  135. .data_xfer = ata_pio_data_xfer,
  136. .freeze = ata_bmdma_freeze,
  137. .thaw = ata_bmdma_thaw,
  138. .error_handler = ata_bmdma_error_handler,
  139. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  140. .irq_handler = ata_interrupt,
  141. .irq_clear = ata_bmdma_irq_clear,
  142. .scr_read = svia_scr_read,
  143. .scr_write = svia_scr_write,
  144. .port_start = ata_port_start,
  145. .port_stop = ata_port_stop,
  146. .host_stop = ata_host_stop,
  147. };
  148. static struct ata_port_info vt6420_port_info = {
  149. .sht = &svia_sht,
  150. .host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY,
  151. .pio_mask = 0x1f,
  152. .mwdma_mask = 0x07,
  153. .udma_mask = 0x7f,
  154. .port_ops = &vt6420_sata_ops,
  155. };
  156. MODULE_AUTHOR("Jeff Garzik");
  157. MODULE_DESCRIPTION("SCSI low-level driver for VIA SATA controllers");
  158. MODULE_LICENSE("GPL");
  159. MODULE_DEVICE_TABLE(pci, svia_pci_tbl);
  160. MODULE_VERSION(DRV_VERSION);
  161. static u32 svia_scr_read (struct ata_port *ap, unsigned int sc_reg)
  162. {
  163. if (sc_reg > SCR_CONTROL)
  164. return 0xffffffffU;
  165. return inl(ap->ioaddr.scr_addr + (4 * sc_reg));
  166. }
  167. static void svia_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
  168. {
  169. if (sc_reg > SCR_CONTROL)
  170. return;
  171. outl(val, ap->ioaddr.scr_addr + (4 * sc_reg));
  172. }
  173. /**
  174. * vt6420_prereset - prereset for vt6420
  175. * @ap: target ATA port
  176. *
  177. * SCR registers on vt6420 are pieces of shit and may hang the
  178. * whole machine completely if accessed with the wrong timing.
  179. * To avoid such catastrophe, vt6420 doesn't provide generic SCR
  180. * access operations, but uses SStatus and SControl only during
  181. * boot probing in controlled way.
  182. *
  183. * As the old (pre EH update) probing code is proven to work, we
  184. * strictly follow the access pattern.
  185. *
  186. * LOCKING:
  187. * Kernel thread context (may sleep)
  188. *
  189. * RETURNS:
  190. * 0 on success, -errno otherwise.
  191. */
  192. static int vt6420_prereset(struct ata_port *ap)
  193. {
  194. struct ata_eh_context *ehc = &ap->eh_context;
  195. unsigned long timeout = jiffies + (HZ * 5);
  196. u32 sstatus, scontrol;
  197. int online;
  198. /* don't do any SCR stuff if we're not loading */
  199. if (!ATA_PFLAG_LOADING)
  200. goto skip_scr;
  201. /* Resume phy. This is the old resume sequence from
  202. * __sata_phy_reset().
  203. */
  204. svia_scr_write(ap, SCR_CONTROL, 0x300);
  205. svia_scr_read(ap, SCR_CONTROL); /* flush */
  206. /* wait for phy to become ready, if necessary */
  207. do {
  208. msleep(200);
  209. if ((svia_scr_read(ap, SCR_STATUS) & 0xf) != 1)
  210. break;
  211. } while (time_before(jiffies, timeout));
  212. /* open code sata_print_link_status() */
  213. sstatus = svia_scr_read(ap, SCR_STATUS);
  214. scontrol = svia_scr_read(ap, SCR_CONTROL);
  215. online = (sstatus & 0xf) == 0x3;
  216. ata_port_printk(ap, KERN_INFO,
  217. "SATA link %s 1.5 Gbps (SStatus %X SControl %X)\n",
  218. online ? "up" : "down", sstatus, scontrol);
  219. /* SStatus is read one more time */
  220. svia_scr_read(ap, SCR_STATUS);
  221. if (!online) {
  222. /* tell EH to bail */
  223. ehc->i.action &= ~ATA_EH_RESET_MASK;
  224. return 0;
  225. }
  226. skip_scr:
  227. /* wait for !BSY */
  228. ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
  229. return 0;
  230. }
  231. static void vt6420_error_handler(struct ata_port *ap)
  232. {
  233. return ata_bmdma_drive_eh(ap, vt6420_prereset, ata_std_softreset,
  234. NULL, ata_std_postreset);
  235. }
  236. static const unsigned int svia_bar_sizes[] = {
  237. 8, 4, 8, 4, 16, 256
  238. };
  239. static const unsigned int vt6421_bar_sizes[] = {
  240. 16, 16, 16, 16, 32, 128
  241. };
  242. static unsigned long svia_scr_addr(unsigned long addr, unsigned int port)
  243. {
  244. return addr + (port * 128);
  245. }
  246. static unsigned long vt6421_scr_addr(unsigned long addr, unsigned int port)
  247. {
  248. return addr + (port * 64);
  249. }
  250. static void vt6421_init_addrs(struct ata_probe_ent *probe_ent,
  251. struct pci_dev *pdev,
  252. unsigned int port)
  253. {
  254. unsigned long reg_addr = pci_resource_start(pdev, port);
  255. unsigned long bmdma_addr = pci_resource_start(pdev, 4) + (port * 8);
  256. unsigned long scr_addr;
  257. probe_ent->port[port].cmd_addr = reg_addr;
  258. probe_ent->port[port].altstatus_addr =
  259. probe_ent->port[port].ctl_addr = (reg_addr + 8) | ATA_PCI_CTL_OFS;
  260. probe_ent->port[port].bmdma_addr = bmdma_addr;
  261. scr_addr = vt6421_scr_addr(pci_resource_start(pdev, 5), port);
  262. probe_ent->port[port].scr_addr = scr_addr;
  263. ata_std_ports(&probe_ent->port[port]);
  264. }
  265. static struct ata_probe_ent *vt6420_init_probe_ent(struct pci_dev *pdev)
  266. {
  267. struct ata_probe_ent *probe_ent;
  268. struct ata_port_info *ppi = &vt6420_port_info;
  269. probe_ent = ata_pci_init_native_mode(pdev, &ppi, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
  270. if (!probe_ent)
  271. return NULL;
  272. probe_ent->port[0].scr_addr =
  273. svia_scr_addr(pci_resource_start(pdev, 5), 0);
  274. probe_ent->port[1].scr_addr =
  275. svia_scr_addr(pci_resource_start(pdev, 5), 1);
  276. return probe_ent;
  277. }
  278. static struct ata_probe_ent *vt6421_init_probe_ent(struct pci_dev *pdev)
  279. {
  280. struct ata_probe_ent *probe_ent;
  281. unsigned int i;
  282. probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
  283. if (!probe_ent)
  284. return NULL;
  285. memset(probe_ent, 0, sizeof(*probe_ent));
  286. probe_ent->dev = pci_dev_to_dev(pdev);
  287. INIT_LIST_HEAD(&probe_ent->node);
  288. probe_ent->sht = &svia_sht;
  289. probe_ent->host_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY;
  290. probe_ent->port_ops = &vt6421_sata_ops;
  291. probe_ent->n_ports = N_PORTS;
  292. probe_ent->irq = pdev->irq;
  293. probe_ent->irq_flags = IRQF_SHARED;
  294. probe_ent->pio_mask = 0x1f;
  295. probe_ent->mwdma_mask = 0x07;
  296. probe_ent->udma_mask = 0x7f;
  297. for (i = 0; i < N_PORTS; i++)
  298. vt6421_init_addrs(probe_ent, pdev, i);
  299. return probe_ent;
  300. }
  301. static void svia_configure(struct pci_dev *pdev)
  302. {
  303. u8 tmp8;
  304. pci_read_config_byte(pdev, PCI_INTERRUPT_LINE, &tmp8);
  305. dev_printk(KERN_INFO, &pdev->dev, "routed to hard irq line %d\n",
  306. (int) (tmp8 & 0xf0) == 0xf0 ? 0 : tmp8 & 0x0f);
  307. /* make sure SATA channels are enabled */
  308. pci_read_config_byte(pdev, SATA_CHAN_ENAB, &tmp8);
  309. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  310. dev_printk(KERN_DEBUG, &pdev->dev,
  311. "enabling SATA channels (0x%x)\n",
  312. (int) tmp8);
  313. tmp8 |= ALL_PORTS;
  314. pci_write_config_byte(pdev, SATA_CHAN_ENAB, tmp8);
  315. }
  316. /* make sure interrupts for each channel sent to us */
  317. pci_read_config_byte(pdev, SATA_INT_GATE, &tmp8);
  318. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  319. dev_printk(KERN_DEBUG, &pdev->dev,
  320. "enabling SATA channel interrupts (0x%x)\n",
  321. (int) tmp8);
  322. tmp8 |= ALL_PORTS;
  323. pci_write_config_byte(pdev, SATA_INT_GATE, tmp8);
  324. }
  325. /* make sure native mode is enabled */
  326. pci_read_config_byte(pdev, SATA_NATIVE_MODE, &tmp8);
  327. if ((tmp8 & NATIVE_MODE_ALL) != NATIVE_MODE_ALL) {
  328. dev_printk(KERN_DEBUG, &pdev->dev,
  329. "enabling SATA channel native mode (0x%x)\n",
  330. (int) tmp8);
  331. tmp8 |= NATIVE_MODE_ALL;
  332. pci_write_config_byte(pdev, SATA_NATIVE_MODE, tmp8);
  333. }
  334. }
  335. static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  336. {
  337. static int printed_version;
  338. unsigned int i;
  339. int rc;
  340. struct ata_probe_ent *probe_ent;
  341. int board_id = (int) ent->driver_data;
  342. const int *bar_sizes;
  343. int pci_dev_busy = 0;
  344. u8 tmp8;
  345. if (!printed_version++)
  346. dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
  347. rc = pci_enable_device(pdev);
  348. if (rc)
  349. return rc;
  350. rc = pci_request_regions(pdev, DRV_NAME);
  351. if (rc) {
  352. pci_dev_busy = 1;
  353. goto err_out;
  354. }
  355. if (board_id == vt6420) {
  356. pci_read_config_byte(pdev, SATA_PATA_SHARING, &tmp8);
  357. if (tmp8 & SATA_2DEV) {
  358. dev_printk(KERN_ERR, &pdev->dev,
  359. "SATA master/slave not supported (0x%x)\n",
  360. (int) tmp8);
  361. rc = -EIO;
  362. goto err_out_regions;
  363. }
  364. bar_sizes = &svia_bar_sizes[0];
  365. } else {
  366. bar_sizes = &vt6421_bar_sizes[0];
  367. }
  368. for (i = 0; i < ARRAY_SIZE(svia_bar_sizes); i++)
  369. if ((pci_resource_start(pdev, i) == 0) ||
  370. (pci_resource_len(pdev, i) < bar_sizes[i])) {
  371. dev_printk(KERN_ERR, &pdev->dev,
  372. "invalid PCI BAR %u (sz 0x%llx, val 0x%llx)\n",
  373. i,
  374. (unsigned long long)pci_resource_start(pdev, i),
  375. (unsigned long long)pci_resource_len(pdev, i));
  376. rc = -ENODEV;
  377. goto err_out_regions;
  378. }
  379. rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
  380. if (rc)
  381. goto err_out_regions;
  382. rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
  383. if (rc)
  384. goto err_out_regions;
  385. if (board_id == vt6420)
  386. probe_ent = vt6420_init_probe_ent(pdev);
  387. else
  388. probe_ent = vt6421_init_probe_ent(pdev);
  389. if (!probe_ent) {
  390. dev_printk(KERN_ERR, &pdev->dev, "out of memory\n");
  391. rc = -ENOMEM;
  392. goto err_out_regions;
  393. }
  394. svia_configure(pdev);
  395. pci_set_master(pdev);
  396. /* FIXME: check ata_device_add return value */
  397. ata_device_add(probe_ent);
  398. kfree(probe_ent);
  399. return 0;
  400. err_out_regions:
  401. pci_release_regions(pdev);
  402. err_out:
  403. if (!pci_dev_busy)
  404. pci_disable_device(pdev);
  405. return rc;
  406. }
  407. static int __init svia_init(void)
  408. {
  409. return pci_module_init(&svia_pci_driver);
  410. }
  411. static void __exit svia_exit(void)
  412. {
  413. pci_unregister_driver(&svia_pci_driver);
  414. }
  415. module_init(svia_init);
  416. module_exit(svia_exit);