sata_via.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392
  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 "scsi.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 "1.1"
  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 struct pci_device_id svia_pci_tbl[] = {
  70. { 0x1106, 0x3149, PCI_ANY_ID, PCI_ANY_ID, 0, 0, vt6420 },
  71. { 0x1106, 0x3249, PCI_ANY_ID, PCI_ANY_ID, 0, 0, vt6421 },
  72. { } /* terminate list */
  73. };
  74. static struct pci_driver svia_pci_driver = {
  75. .name = DRV_NAME,
  76. .id_table = svia_pci_tbl,
  77. .probe = svia_init_one,
  78. .remove = ata_pci_remove_one,
  79. };
  80. static Scsi_Host_Template svia_sht = {
  81. .module = THIS_MODULE,
  82. .name = DRV_NAME,
  83. .ioctl = ata_scsi_ioctl,
  84. .queuecommand = ata_scsi_queuecmd,
  85. .eh_strategy_handler = ata_scsi_error,
  86. .can_queue = ATA_DEF_QUEUE,
  87. .this_id = ATA_SHT_THIS_ID,
  88. .sg_tablesize = LIBATA_MAX_PRD,
  89. .max_sectors = ATA_MAX_SECTORS,
  90. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  91. .emulated = ATA_SHT_EMULATED,
  92. .use_clustering = ATA_SHT_USE_CLUSTERING,
  93. .proc_name = DRV_NAME,
  94. .dma_boundary = ATA_DMA_BOUNDARY,
  95. .slave_configure = ata_scsi_slave_config,
  96. .bios_param = ata_std_bios_param,
  97. .ordered_flush = 1,
  98. };
  99. static struct ata_port_operations svia_sata_ops = {
  100. .port_disable = ata_port_disable,
  101. .tf_load = ata_tf_load,
  102. .tf_read = ata_tf_read,
  103. .check_status = ata_check_status,
  104. .exec_command = ata_exec_command,
  105. .dev_select = ata_std_dev_select,
  106. .phy_reset = sata_phy_reset,
  107. .bmdma_setup = ata_bmdma_setup,
  108. .bmdma_start = ata_bmdma_start,
  109. .bmdma_stop = ata_bmdma_stop,
  110. .bmdma_status = ata_bmdma_status,
  111. .qc_prep = ata_qc_prep,
  112. .qc_issue = ata_qc_issue_prot,
  113. .eng_timeout = ata_eng_timeout,
  114. .irq_handler = ata_interrupt,
  115. .irq_clear = ata_bmdma_irq_clear,
  116. .scr_read = svia_scr_read,
  117. .scr_write = svia_scr_write,
  118. .port_start = ata_port_start,
  119. .port_stop = ata_port_stop,
  120. .host_stop = ata_host_stop,
  121. };
  122. static struct ata_port_info svia_port_info = {
  123. .sht = &svia_sht,
  124. .host_flags = ATA_FLAG_SATA | ATA_FLAG_SRST | ATA_FLAG_NO_LEGACY,
  125. .pio_mask = 0x1f,
  126. .mwdma_mask = 0x07,
  127. .udma_mask = 0x7f,
  128. .port_ops = &svia_sata_ops,
  129. };
  130. MODULE_AUTHOR("Jeff Garzik");
  131. MODULE_DESCRIPTION("SCSI low-level driver for VIA SATA controllers");
  132. MODULE_LICENSE("GPL");
  133. MODULE_DEVICE_TABLE(pci, svia_pci_tbl);
  134. MODULE_VERSION(DRV_VERSION);
  135. static u32 svia_scr_read (struct ata_port *ap, unsigned int sc_reg)
  136. {
  137. if (sc_reg > SCR_CONTROL)
  138. return 0xffffffffU;
  139. return inl(ap->ioaddr.scr_addr + (4 * sc_reg));
  140. }
  141. static void svia_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
  142. {
  143. if (sc_reg > SCR_CONTROL)
  144. return;
  145. outl(val, ap->ioaddr.scr_addr + (4 * sc_reg));
  146. }
  147. static const unsigned int svia_bar_sizes[] = {
  148. 8, 4, 8, 4, 16, 256
  149. };
  150. static const unsigned int vt6421_bar_sizes[] = {
  151. 16, 16, 16, 16, 32, 128
  152. };
  153. static unsigned long svia_scr_addr(unsigned long addr, unsigned int port)
  154. {
  155. return addr + (port * 128);
  156. }
  157. static unsigned long vt6421_scr_addr(unsigned long addr, unsigned int port)
  158. {
  159. return addr + (port * 64);
  160. }
  161. static void vt6421_init_addrs(struct ata_probe_ent *probe_ent,
  162. struct pci_dev *pdev,
  163. unsigned int port)
  164. {
  165. unsigned long reg_addr = pci_resource_start(pdev, port);
  166. unsigned long bmdma_addr = pci_resource_start(pdev, 4) + (port * 8);
  167. unsigned long scr_addr;
  168. probe_ent->port[port].cmd_addr = reg_addr;
  169. probe_ent->port[port].altstatus_addr =
  170. probe_ent->port[port].ctl_addr = (reg_addr + 8) | ATA_PCI_CTL_OFS;
  171. probe_ent->port[port].bmdma_addr = bmdma_addr;
  172. scr_addr = vt6421_scr_addr(pci_resource_start(pdev, 5), port);
  173. probe_ent->port[port].scr_addr = scr_addr;
  174. ata_std_ports(&probe_ent->port[port]);
  175. }
  176. static struct ata_probe_ent *vt6420_init_probe_ent(struct pci_dev *pdev)
  177. {
  178. struct ata_probe_ent *probe_ent;
  179. struct ata_port_info *ppi = &svia_port_info;
  180. probe_ent = ata_pci_init_native_mode(pdev, &ppi);
  181. if (!probe_ent)
  182. return NULL;
  183. probe_ent->port[0].scr_addr =
  184. svia_scr_addr(pci_resource_start(pdev, 5), 0);
  185. probe_ent->port[1].scr_addr =
  186. svia_scr_addr(pci_resource_start(pdev, 5), 1);
  187. return probe_ent;
  188. }
  189. static struct ata_probe_ent *vt6421_init_probe_ent(struct pci_dev *pdev)
  190. {
  191. struct ata_probe_ent *probe_ent;
  192. unsigned int i;
  193. probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
  194. if (!probe_ent)
  195. return NULL;
  196. memset(probe_ent, 0, sizeof(*probe_ent));
  197. probe_ent->dev = pci_dev_to_dev(pdev);
  198. INIT_LIST_HEAD(&probe_ent->node);
  199. probe_ent->sht = &svia_sht;
  200. probe_ent->host_flags = ATA_FLAG_SATA | ATA_FLAG_SATA_RESET |
  201. ATA_FLAG_NO_LEGACY;
  202. probe_ent->port_ops = &svia_sata_ops;
  203. probe_ent->n_ports = N_PORTS;
  204. probe_ent->irq = pdev->irq;
  205. probe_ent->irq_flags = SA_SHIRQ;
  206. probe_ent->pio_mask = 0x1f;
  207. probe_ent->mwdma_mask = 0x07;
  208. probe_ent->udma_mask = 0x7f;
  209. for (i = 0; i < N_PORTS; i++)
  210. vt6421_init_addrs(probe_ent, pdev, i);
  211. return probe_ent;
  212. }
  213. static void svia_configure(struct pci_dev *pdev)
  214. {
  215. u8 tmp8;
  216. pci_read_config_byte(pdev, PCI_INTERRUPT_LINE, &tmp8);
  217. printk(KERN_INFO DRV_NAME "(%s): routed to hard irq line %d\n",
  218. pci_name(pdev),
  219. (int) (tmp8 & 0xf0) == 0xf0 ? 0 : tmp8 & 0x0f);
  220. /* make sure SATA channels are enabled */
  221. pci_read_config_byte(pdev, SATA_CHAN_ENAB, &tmp8);
  222. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  223. printk(KERN_DEBUG DRV_NAME "(%s): enabling SATA channels (0x%x)\n",
  224. pci_name(pdev), (int) tmp8);
  225. tmp8 |= ALL_PORTS;
  226. pci_write_config_byte(pdev, SATA_CHAN_ENAB, tmp8);
  227. }
  228. /* make sure interrupts for each channel sent to us */
  229. pci_read_config_byte(pdev, SATA_INT_GATE, &tmp8);
  230. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  231. printk(KERN_DEBUG DRV_NAME "(%s): enabling SATA channel interrupts (0x%x)\n",
  232. pci_name(pdev), (int) tmp8);
  233. tmp8 |= ALL_PORTS;
  234. pci_write_config_byte(pdev, SATA_INT_GATE, tmp8);
  235. }
  236. /* make sure native mode is enabled */
  237. pci_read_config_byte(pdev, SATA_NATIVE_MODE, &tmp8);
  238. if ((tmp8 & NATIVE_MODE_ALL) != NATIVE_MODE_ALL) {
  239. printk(KERN_DEBUG DRV_NAME "(%s): enabling SATA channel native mode (0x%x)\n",
  240. pci_name(pdev), (int) tmp8);
  241. tmp8 |= NATIVE_MODE_ALL;
  242. pci_write_config_byte(pdev, SATA_NATIVE_MODE, tmp8);
  243. }
  244. }
  245. static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  246. {
  247. static int printed_version;
  248. unsigned int i;
  249. int rc;
  250. struct ata_probe_ent *probe_ent;
  251. int board_id = (int) ent->driver_data;
  252. const int *bar_sizes;
  253. int pci_dev_busy = 0;
  254. u8 tmp8;
  255. if (!printed_version++)
  256. printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");
  257. rc = pci_enable_device(pdev);
  258. if (rc)
  259. return rc;
  260. rc = pci_request_regions(pdev, DRV_NAME);
  261. if (rc) {
  262. pci_dev_busy = 1;
  263. goto err_out;
  264. }
  265. if (board_id == vt6420) {
  266. pci_read_config_byte(pdev, SATA_PATA_SHARING, &tmp8);
  267. if (tmp8 & SATA_2DEV) {
  268. printk(KERN_ERR DRV_NAME "(%s): SATA master/slave not supported (0x%x)\n",
  269. pci_name(pdev), (int) tmp8);
  270. rc = -EIO;
  271. goto err_out_regions;
  272. }
  273. bar_sizes = &svia_bar_sizes[0];
  274. } else {
  275. bar_sizes = &vt6421_bar_sizes[0];
  276. }
  277. for (i = 0; i < ARRAY_SIZE(svia_bar_sizes); i++)
  278. if ((pci_resource_start(pdev, i) == 0) ||
  279. (pci_resource_len(pdev, i) < bar_sizes[i])) {
  280. printk(KERN_ERR DRV_NAME "(%s): invalid PCI BAR %u (sz 0x%lx, val 0x%lx)\n",
  281. pci_name(pdev), i,
  282. pci_resource_start(pdev, i),
  283. pci_resource_len(pdev, i));
  284. rc = -ENODEV;
  285. goto err_out_regions;
  286. }
  287. rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
  288. if (rc)
  289. goto err_out_regions;
  290. rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
  291. if (rc)
  292. goto err_out_regions;
  293. if (board_id == vt6420)
  294. probe_ent = vt6420_init_probe_ent(pdev);
  295. else
  296. probe_ent = vt6421_init_probe_ent(pdev);
  297. if (!probe_ent) {
  298. printk(KERN_ERR DRV_NAME "(%s): out of memory\n",
  299. pci_name(pdev));
  300. rc = -ENOMEM;
  301. goto err_out_regions;
  302. }
  303. svia_configure(pdev);
  304. pci_set_master(pdev);
  305. /* FIXME: check ata_device_add return value */
  306. ata_device_add(probe_ent);
  307. kfree(probe_ent);
  308. return 0;
  309. err_out_regions:
  310. pci_release_regions(pdev);
  311. err_out:
  312. if (!pci_dev_busy)
  313. pci_disable_device(pdev);
  314. return rc;
  315. }
  316. static int __init svia_init(void)
  317. {
  318. return pci_module_init(&svia_pci_driver);
  319. }
  320. static void __exit svia_exit(void)
  321. {
  322. pci_unregister_driver(&svia_pci_driver);
  323. }
  324. module_init(svia_init);
  325. module_exit(svia_exit);