sata_via.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  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.0"
  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. SATA_PATA_SHARING = 0x49, /* PATA/SATA sharing func ctrl */
  57. PATA_UDMA_TIMING = 0xB3, /* PATA timing for DMA/ cable detect */
  58. PATA_PIO_TIMING = 0xAB, /* PATA timing register */
  59. PORT0 = (1 << 1),
  60. PORT1 = (1 << 0),
  61. ALL_PORTS = PORT0 | PORT1,
  62. PATA_PORT = 2, /* PATA is port 2 */
  63. N_PORTS = 3,
  64. NATIVE_MODE_ALL = (1 << 7) | (1 << 6) | (1 << 5) | (1 << 4),
  65. SATA_EXT_PHY = (1 << 6), /* 0==use PATA, 1==ext phy */
  66. SATA_2DEV = (1 << 5), /* SATA is master/slave */
  67. };
  68. static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
  69. static u32 svia_scr_read (struct ata_port *ap, unsigned int sc_reg);
  70. static void svia_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
  71. static void svia_noop_freeze(struct ata_port *ap);
  72. static void vt6420_error_handler(struct ata_port *ap);
  73. static void vt6421_sata_error_handler(struct ata_port *ap);
  74. static void vt6421_pata_error_handler(struct ata_port *ap);
  75. static void vt6421_set_pio_mode(struct ata_port *ap, struct ata_device *adev);
  76. static void vt6421_set_dma_mode(struct ata_port *ap, struct ata_device *adev);
  77. static int vt6421_port_start(struct ata_port *ap);
  78. static const struct pci_device_id svia_pci_tbl[] = {
  79. { PCI_VDEVICE(VIA, 0x5337), vt6420 },
  80. { PCI_VDEVICE(VIA, 0x0591), vt6420 },
  81. { PCI_VDEVICE(VIA, 0x3149), vt6420 },
  82. { PCI_VDEVICE(VIA, 0x3249), vt6421 },
  83. { } /* terminate list */
  84. };
  85. static struct pci_driver svia_pci_driver = {
  86. .name = DRV_NAME,
  87. .id_table = svia_pci_tbl,
  88. .probe = svia_init_one,
  89. .remove = ata_pci_remove_one,
  90. };
  91. static struct scsi_host_template svia_sht = {
  92. .module = THIS_MODULE,
  93. .name = DRV_NAME,
  94. .ioctl = ata_scsi_ioctl,
  95. .queuecommand = ata_scsi_queuecmd,
  96. .can_queue = ATA_DEF_QUEUE,
  97. .this_id = ATA_SHT_THIS_ID,
  98. .sg_tablesize = LIBATA_MAX_PRD,
  99. .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
  100. .emulated = ATA_SHT_EMULATED,
  101. .use_clustering = ATA_SHT_USE_CLUSTERING,
  102. .proc_name = DRV_NAME,
  103. .dma_boundary = ATA_DMA_BOUNDARY,
  104. .slave_configure = ata_scsi_slave_config,
  105. .slave_destroy = ata_scsi_slave_destroy,
  106. .bios_param = ata_std_bios_param,
  107. };
  108. static const struct ata_port_operations vt6420_sata_ops = {
  109. .port_disable = ata_port_disable,
  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_handler = ata_interrupt,
  127. .irq_clear = ata_bmdma_irq_clear,
  128. .irq_on = ata_irq_on,
  129. .irq_ack = ata_irq_ack,
  130. .port_start = ata_port_start,
  131. };
  132. static const struct ata_port_operations vt6421_pata_ops = {
  133. .port_disable = ata_port_disable,
  134. .set_piomode = vt6421_set_pio_mode,
  135. .set_dmamode = vt6421_set_dma_mode,
  136. .tf_load = ata_tf_load,
  137. .tf_read = ata_tf_read,
  138. .check_status = ata_check_status,
  139. .exec_command = ata_exec_command,
  140. .dev_select = ata_std_dev_select,
  141. .bmdma_setup = ata_bmdma_setup,
  142. .bmdma_start = ata_bmdma_start,
  143. .bmdma_stop = ata_bmdma_stop,
  144. .bmdma_status = ata_bmdma_status,
  145. .qc_prep = ata_qc_prep,
  146. .qc_issue = ata_qc_issue_prot,
  147. .data_xfer = ata_data_xfer,
  148. .freeze = ata_bmdma_freeze,
  149. .thaw = ata_bmdma_thaw,
  150. .error_handler = vt6421_pata_error_handler,
  151. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  152. .irq_handler = ata_interrupt,
  153. .irq_clear = ata_bmdma_irq_clear,
  154. .irq_on = ata_irq_on,
  155. .irq_ack = ata_irq_ack,
  156. .port_start = vt6421_port_start,
  157. };
  158. static const struct ata_port_operations vt6421_sata_ops = {
  159. .port_disable = ata_port_disable,
  160. .tf_load = ata_tf_load,
  161. .tf_read = ata_tf_read,
  162. .check_status = ata_check_status,
  163. .exec_command = ata_exec_command,
  164. .dev_select = ata_std_dev_select,
  165. .bmdma_setup = ata_bmdma_setup,
  166. .bmdma_start = ata_bmdma_start,
  167. .bmdma_stop = ata_bmdma_stop,
  168. .bmdma_status = ata_bmdma_status,
  169. .qc_prep = ata_qc_prep,
  170. .qc_issue = ata_qc_issue_prot,
  171. .data_xfer = ata_data_xfer,
  172. .freeze = ata_bmdma_freeze,
  173. .thaw = ata_bmdma_thaw,
  174. .error_handler = vt6421_sata_error_handler,
  175. .post_internal_cmd = ata_bmdma_post_internal_cmd,
  176. .irq_handler = ata_interrupt,
  177. .irq_clear = ata_bmdma_irq_clear,
  178. .irq_on = ata_irq_on,
  179. .irq_ack = ata_irq_ack,
  180. .scr_read = svia_scr_read,
  181. .scr_write = svia_scr_write,
  182. .port_start = vt6421_port_start,
  183. };
  184. static struct ata_port_info vt6420_port_info = {
  185. .sht = &svia_sht,
  186. .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY,
  187. .pio_mask = 0x1f,
  188. .mwdma_mask = 0x07,
  189. .udma_mask = 0x7f,
  190. .port_ops = &vt6420_sata_ops,
  191. };
  192. MODULE_AUTHOR("Jeff Garzik");
  193. MODULE_DESCRIPTION("SCSI low-level driver for VIA SATA controllers");
  194. MODULE_LICENSE("GPL");
  195. MODULE_DEVICE_TABLE(pci, svia_pci_tbl);
  196. MODULE_VERSION(DRV_VERSION);
  197. static u32 svia_scr_read (struct ata_port *ap, unsigned int sc_reg)
  198. {
  199. if (sc_reg > SCR_CONTROL)
  200. return 0xffffffffU;
  201. return ioread32(ap->ioaddr.scr_addr + (4 * sc_reg));
  202. }
  203. static void svia_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
  204. {
  205. if (sc_reg > SCR_CONTROL)
  206. return;
  207. iowrite32(val, ap->ioaddr.scr_addr + (4 * sc_reg));
  208. }
  209. static void svia_noop_freeze(struct ata_port *ap)
  210. {
  211. /* Some VIA controllers choke if ATA_NIEN is manipulated in
  212. * certain way. Leave it alone and just clear pending IRQ.
  213. */
  214. ata_chk_status(ap);
  215. ata_bmdma_irq_clear(ap);
  216. }
  217. /**
  218. * vt6420_prereset - prereset for vt6420
  219. * @ap: target ATA port
  220. *
  221. * SCR registers on vt6420 are pieces of shit and may hang the
  222. * whole machine completely if accessed with the wrong timing.
  223. * To avoid such catastrophe, vt6420 doesn't provide generic SCR
  224. * access operations, but uses SStatus and SControl only during
  225. * boot probing in controlled way.
  226. *
  227. * As the old (pre EH update) probing code is proven to work, we
  228. * strictly follow the access pattern.
  229. *
  230. * LOCKING:
  231. * Kernel thread context (may sleep)
  232. *
  233. * RETURNS:
  234. * 0 on success, -errno otherwise.
  235. */
  236. static int vt6420_prereset(struct ata_port *ap)
  237. {
  238. struct ata_eh_context *ehc = &ap->eh_context;
  239. unsigned long timeout = jiffies + (HZ * 5);
  240. u32 sstatus, scontrol;
  241. int online;
  242. /* don't do any SCR stuff if we're not loading */
  243. if (!(ap->pflags & ATA_PFLAG_LOADING))
  244. goto skip_scr;
  245. /* Resume phy. This is the old resume sequence from
  246. * __sata_phy_reset().
  247. */
  248. svia_scr_write(ap, SCR_CONTROL, 0x300);
  249. svia_scr_read(ap, SCR_CONTROL); /* flush */
  250. /* wait for phy to become ready, if necessary */
  251. do {
  252. msleep(200);
  253. if ((svia_scr_read(ap, SCR_STATUS) & 0xf) != 1)
  254. break;
  255. } while (time_before(jiffies, timeout));
  256. /* open code sata_print_link_status() */
  257. sstatus = svia_scr_read(ap, SCR_STATUS);
  258. scontrol = svia_scr_read(ap, SCR_CONTROL);
  259. online = (sstatus & 0xf) == 0x3;
  260. ata_port_printk(ap, KERN_INFO,
  261. "SATA link %s 1.5 Gbps (SStatus %X SControl %X)\n",
  262. online ? "up" : "down", sstatus, scontrol);
  263. /* SStatus is read one more time */
  264. svia_scr_read(ap, SCR_STATUS);
  265. if (!online) {
  266. /* tell EH to bail */
  267. ehc->i.action &= ~ATA_EH_RESET_MASK;
  268. return 0;
  269. }
  270. skip_scr:
  271. /* wait for !BSY */
  272. ata_busy_sleep(ap, ATA_TMOUT_BOOT_QUICK, ATA_TMOUT_BOOT);
  273. return 0;
  274. }
  275. static void vt6420_error_handler(struct ata_port *ap)
  276. {
  277. return ata_bmdma_drive_eh(ap, vt6420_prereset, ata_std_softreset,
  278. NULL, ata_std_postreset);
  279. }
  280. static int vt6421_pata_prereset(struct ata_port *ap)
  281. {
  282. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  283. u8 tmp;
  284. pci_read_config_byte(pdev, PATA_UDMA_TIMING, &tmp);
  285. if (tmp & 0x10)
  286. ap->cbl = ATA_CBL_PATA40;
  287. else
  288. ap->cbl = ATA_CBL_PATA80;
  289. return 0;
  290. }
  291. static void vt6421_pata_error_handler(struct ata_port *ap)
  292. {
  293. return ata_bmdma_drive_eh(ap, vt6421_pata_prereset, ata_std_softreset,
  294. NULL, ata_std_postreset);
  295. }
  296. static int vt6421_sata_prereset(struct ata_port *ap)
  297. {
  298. ap->cbl = ATA_CBL_SATA;
  299. return 0;
  300. }
  301. static void vt6421_sata_error_handler(struct ata_port *ap)
  302. {
  303. return ata_bmdma_drive_eh(ap, vt6421_sata_prereset, ata_std_softreset,
  304. NULL, ata_std_postreset);
  305. }
  306. static void vt6421_set_pio_mode(struct ata_port *ap, struct ata_device *adev)
  307. {
  308. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  309. static const u8 pio_bits[] = { 0xA8, 0x65, 0x65, 0x31, 0x20 };
  310. pci_write_config_byte(pdev, PATA_PIO_TIMING, pio_bits[adev->pio_mode - XFER_PIO_0]);
  311. }
  312. static void vt6421_set_dma_mode(struct ata_port *ap, struct ata_device *adev)
  313. {
  314. struct pci_dev *pdev = to_pci_dev(ap->host->dev);
  315. static const u8 udma_bits[] = { 0xEE, 0xE8, 0xE6, 0xE4, 0xE2, 0xE1, 0xE0, 0xE0 };
  316. pci_write_config_byte(pdev, PATA_UDMA_TIMING, udma_bits[adev->pio_mode - XFER_UDMA_0]);
  317. }
  318. static int vt6421_port_start(struct ata_port *ap)
  319. {
  320. if (ap->port_no == PATA_PORT) {
  321. ap->ops = &vt6421_pata_ops;
  322. ap->mwdma_mask = 0;
  323. ap->flags = ATA_FLAG_SLAVE_POSS | ATA_FLAG_NO_LEGACY | ATA_FLAG_SRST;
  324. }
  325. return ata_port_start(ap);
  326. }
  327. static const unsigned int svia_bar_sizes[] = {
  328. 8, 4, 8, 4, 16, 256
  329. };
  330. static const unsigned int vt6421_bar_sizes[] = {
  331. 16, 16, 16, 16, 32, 128
  332. };
  333. static void __iomem * svia_scr_addr(void __iomem *addr, unsigned int port)
  334. {
  335. return addr + (port * 128);
  336. }
  337. static void __iomem * vt6421_scr_addr(void __iomem *addr, unsigned int port)
  338. {
  339. return addr + (port * 64);
  340. }
  341. static void vt6421_init_addrs(struct ata_probe_ent *probe_ent,
  342. void __iomem * const *iomap, unsigned int port)
  343. {
  344. void __iomem *reg_addr = iomap[port];
  345. void __iomem *bmdma_addr = iomap[4] + (port * 8);
  346. probe_ent->port[port].cmd_addr = reg_addr;
  347. probe_ent->port[port].altstatus_addr =
  348. probe_ent->port[port].ctl_addr = (void __iomem *)
  349. ((unsigned long)(reg_addr + 8) | ATA_PCI_CTL_OFS);
  350. probe_ent->port[port].bmdma_addr = bmdma_addr;
  351. probe_ent->port[port].scr_addr = vt6421_scr_addr(iomap[5], port);
  352. ata_std_ports(&probe_ent->port[port]);
  353. }
  354. static struct ata_probe_ent *vt6420_init_probe_ent(struct pci_dev *pdev)
  355. {
  356. struct ata_probe_ent *probe_ent;
  357. struct ata_port_info *ppi[2];
  358. void __iomem * const *iomap;
  359. ppi[0] = ppi[1] = &vt6420_port_info;
  360. probe_ent = ata_pci_init_native_mode(pdev, ppi, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
  361. if (!probe_ent)
  362. return NULL;
  363. iomap = pcim_iomap_table(pdev);
  364. probe_ent->port[0].scr_addr = svia_scr_addr(iomap[5], 0);
  365. probe_ent->port[1].scr_addr = svia_scr_addr(iomap[5], 1);
  366. return probe_ent;
  367. }
  368. static struct ata_probe_ent *vt6421_init_probe_ent(struct pci_dev *pdev)
  369. {
  370. struct ata_probe_ent *probe_ent;
  371. unsigned int i;
  372. probe_ent = devm_kzalloc(&pdev->dev, sizeof(*probe_ent), GFP_KERNEL);
  373. if (!probe_ent)
  374. return NULL;
  375. memset(probe_ent, 0, sizeof(*probe_ent));
  376. probe_ent->dev = pci_dev_to_dev(pdev);
  377. INIT_LIST_HEAD(&probe_ent->node);
  378. probe_ent->sht = &svia_sht;
  379. probe_ent->port_flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY;
  380. probe_ent->port_ops = &vt6421_sata_ops;
  381. probe_ent->n_ports = N_PORTS;
  382. probe_ent->irq = pdev->irq;
  383. probe_ent->irq_flags = IRQF_SHARED;
  384. probe_ent->pio_mask = 0x1f;
  385. probe_ent->mwdma_mask = 0x07;
  386. probe_ent->udma_mask = 0x7f;
  387. for (i = 0; i < N_PORTS; i++)
  388. vt6421_init_addrs(probe_ent, pcim_iomap_table(pdev), i);
  389. return probe_ent;
  390. }
  391. static void svia_configure(struct pci_dev *pdev)
  392. {
  393. u8 tmp8;
  394. pci_read_config_byte(pdev, PCI_INTERRUPT_LINE, &tmp8);
  395. dev_printk(KERN_INFO, &pdev->dev, "routed to hard irq line %d\n",
  396. (int) (tmp8 & 0xf0) == 0xf0 ? 0 : tmp8 & 0x0f);
  397. /* make sure SATA channels are enabled */
  398. pci_read_config_byte(pdev, SATA_CHAN_ENAB, &tmp8);
  399. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  400. dev_printk(KERN_DEBUG, &pdev->dev,
  401. "enabling SATA channels (0x%x)\n",
  402. (int) tmp8);
  403. tmp8 |= ALL_PORTS;
  404. pci_write_config_byte(pdev, SATA_CHAN_ENAB, tmp8);
  405. }
  406. /* make sure interrupts for each channel sent to us */
  407. pci_read_config_byte(pdev, SATA_INT_GATE, &tmp8);
  408. if ((tmp8 & ALL_PORTS) != ALL_PORTS) {
  409. dev_printk(KERN_DEBUG, &pdev->dev,
  410. "enabling SATA channel interrupts (0x%x)\n",
  411. (int) tmp8);
  412. tmp8 |= ALL_PORTS;
  413. pci_write_config_byte(pdev, SATA_INT_GATE, tmp8);
  414. }
  415. /* make sure native mode is enabled */
  416. pci_read_config_byte(pdev, SATA_NATIVE_MODE, &tmp8);
  417. if ((tmp8 & NATIVE_MODE_ALL) != NATIVE_MODE_ALL) {
  418. dev_printk(KERN_DEBUG, &pdev->dev,
  419. "enabling SATA channel native mode (0x%x)\n",
  420. (int) tmp8);
  421. tmp8 |= NATIVE_MODE_ALL;
  422. pci_write_config_byte(pdev, SATA_NATIVE_MODE, tmp8);
  423. }
  424. }
  425. static int svia_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
  426. {
  427. static int printed_version;
  428. unsigned int i;
  429. int rc;
  430. struct ata_probe_ent *probe_ent;
  431. int board_id = (int) ent->driver_data;
  432. const int *bar_sizes;
  433. u8 tmp8;
  434. if (!printed_version++)
  435. dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
  436. rc = pcim_enable_device(pdev);
  437. if (rc)
  438. return rc;
  439. rc = pcim_iomap_regions(pdev, 0x1f, DRV_NAME);
  440. if (rc) {
  441. pcim_pin_device(pdev);
  442. return rc;
  443. }
  444. if (board_id == vt6420) {
  445. pci_read_config_byte(pdev, SATA_PATA_SHARING, &tmp8);
  446. if (tmp8 & SATA_2DEV) {
  447. dev_printk(KERN_ERR, &pdev->dev,
  448. "SATA master/slave not supported (0x%x)\n",
  449. (int) tmp8);
  450. return -EIO;
  451. }
  452. bar_sizes = &svia_bar_sizes[0];
  453. } else {
  454. bar_sizes = &vt6421_bar_sizes[0];
  455. }
  456. for (i = 0; i < ARRAY_SIZE(svia_bar_sizes); i++)
  457. if ((pci_resource_start(pdev, i) == 0) ||
  458. (pci_resource_len(pdev, i) < bar_sizes[i])) {
  459. dev_printk(KERN_ERR, &pdev->dev,
  460. "invalid PCI BAR %u (sz 0x%llx, val 0x%llx)\n",
  461. i,
  462. (unsigned long long)pci_resource_start(pdev, i),
  463. (unsigned long long)pci_resource_len(pdev, i));
  464. return -ENODEV;
  465. }
  466. rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
  467. if (rc)
  468. return rc;
  469. rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
  470. if (rc)
  471. return rc;
  472. if (board_id == vt6420)
  473. probe_ent = vt6420_init_probe_ent(pdev);
  474. else
  475. probe_ent = vt6421_init_probe_ent(pdev);
  476. if (!probe_ent) {
  477. dev_printk(KERN_ERR, &pdev->dev, "out of memory\n");
  478. return -ENOMEM;
  479. }
  480. svia_configure(pdev);
  481. pci_set_master(pdev);
  482. if (!ata_device_add(probe_ent))
  483. return -ENODEV;
  484. devm_kfree(&pdev->dev, probe_ent);
  485. return 0;
  486. }
  487. static int __init svia_init(void)
  488. {
  489. return pci_register_driver(&svia_pci_driver);
  490. }
  491. static void __exit svia_exit(void)
  492. {
  493. pci_unregister_driver(&svia_pci_driver);
  494. }
  495. module_init(svia_init);
  496. module_exit(svia_exit);