via82cxxx.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575
  1. /*
  2. * VIA IDE driver for Linux. Supported southbridges:
  3. *
  4. * vt82c576, vt82c586, vt82c586a, vt82c586b, vt82c596a, vt82c596b,
  5. * vt82c686, vt82c686a, vt82c686b, vt8231, vt8233, vt8233c, vt8233a,
  6. * vt8235, vt8237, vt8237a
  7. *
  8. * Copyright (c) 2000-2002 Vojtech Pavlik
  9. * Copyright (c) 2007-2010 Bartlomiej Zolnierkiewicz
  10. *
  11. * Based on the work of:
  12. * Michel Aubry
  13. * Jeff Garzik
  14. * Andre Hedrick
  15. *
  16. * Documentation:
  17. * Obsolete device documentation publically available from via.com.tw
  18. * Current device documentation available under NDA only
  19. */
  20. /*
  21. * This program is free software; you can redistribute it and/or modify it
  22. * under the terms of the GNU General Public License version 2 as published by
  23. * the Free Software Foundation.
  24. */
  25. #include <linux/module.h>
  26. #include <linux/kernel.h>
  27. #include <linux/pci.h>
  28. #include <linux/init.h>
  29. #include <linux/ide.h>
  30. #include <linux/dmi.h>
  31. #ifdef CONFIG_PPC_CHRP
  32. #include <asm/processor.h>
  33. #endif
  34. #define DRV_NAME "via82cxxx"
  35. #define VIA_IDE_ENABLE 0x40
  36. #define VIA_IDE_CONFIG 0x41
  37. #define VIA_FIFO_CONFIG 0x43
  38. #define VIA_MISC_1 0x44
  39. #define VIA_MISC_2 0x45
  40. #define VIA_MISC_3 0x46
  41. #define VIA_DRIVE_TIMING 0x48
  42. #define VIA_8BIT_TIMING 0x4e
  43. #define VIA_ADDRESS_SETUP 0x4c
  44. #define VIA_UDMA_TIMING 0x50
  45. #define VIA_BAD_PREQ 0x01 /* Crashes if PREQ# till DDACK# set */
  46. #define VIA_BAD_CLK66 0x02 /* 66 MHz clock doesn't work correctly */
  47. #define VIA_SET_FIFO 0x04 /* Needs to have FIFO split set */
  48. #define VIA_NO_UNMASK 0x08 /* Doesn't work with IRQ unmasking on */
  49. #define VIA_BAD_ID 0x10 /* Has wrong vendor ID (0x1107) */
  50. #define VIA_BAD_AST 0x20 /* Don't touch Address Setup Timing */
  51. #define VIA_SATA_PATA 0x80 /* SATA/PATA combined configuration */
  52. enum {
  53. VIA_IDFLAG_SINGLE = (1 << 1), /* single channel controller */
  54. };
  55. /*
  56. * VIA SouthBridge chips.
  57. */
  58. static struct via_isa_bridge {
  59. char *name;
  60. u16 id;
  61. u8 rev_min;
  62. u8 rev_max;
  63. u8 udma_mask;
  64. u8 flags;
  65. } via_isa_bridges[] = {
  66. { "vx855", PCI_DEVICE_ID_VIA_VX855, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST | VIA_SATA_PATA },
  67. { "vx800", PCI_DEVICE_ID_VIA_VX800, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST | VIA_SATA_PATA },
  68. { "cx700", PCI_DEVICE_ID_VIA_CX700, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST | VIA_SATA_PATA },
  69. { "vt8261", PCI_DEVICE_ID_VIA_8261, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  70. { "vt8237s", PCI_DEVICE_ID_VIA_8237S, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  71. { "vt6410", PCI_DEVICE_ID_VIA_6410, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  72. { "vt8251", PCI_DEVICE_ID_VIA_8251, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  73. { "vt8237", PCI_DEVICE_ID_VIA_8237, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  74. { "vt8237a", PCI_DEVICE_ID_VIA_8237A, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  75. { "vt8235", PCI_DEVICE_ID_VIA_8235, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  76. { "vt8233a", PCI_DEVICE_ID_VIA_8233A, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  77. { "vt8233c", PCI_DEVICE_ID_VIA_8233C_0, 0x00, 0x2f, ATA_UDMA5, },
  78. { "vt8233", PCI_DEVICE_ID_VIA_8233_0, 0x00, 0x2f, ATA_UDMA5, },
  79. { "vt8231", PCI_DEVICE_ID_VIA_8231, 0x00, 0x2f, ATA_UDMA5, },
  80. { "vt82c686b", PCI_DEVICE_ID_VIA_82C686, 0x40, 0x4f, ATA_UDMA5, },
  81. { "vt82c686a", PCI_DEVICE_ID_VIA_82C686, 0x10, 0x2f, ATA_UDMA4, },
  82. { "vt82c686", PCI_DEVICE_ID_VIA_82C686, 0x00, 0x0f, ATA_UDMA2, VIA_BAD_CLK66 },
  83. { "vt82c596b", PCI_DEVICE_ID_VIA_82C596, 0x10, 0x2f, ATA_UDMA4, },
  84. { "vt82c596a", PCI_DEVICE_ID_VIA_82C596, 0x00, 0x0f, ATA_UDMA2, VIA_BAD_CLK66 },
  85. { "vt82c586b", PCI_DEVICE_ID_VIA_82C586_0, 0x47, 0x4f, ATA_UDMA2, VIA_SET_FIFO },
  86. { "vt82c586b", PCI_DEVICE_ID_VIA_82C586_0, 0x40, 0x46, ATA_UDMA2, VIA_SET_FIFO | VIA_BAD_PREQ },
  87. { "vt82c586b", PCI_DEVICE_ID_VIA_82C586_0, 0x30, 0x3f, ATA_UDMA2, VIA_SET_FIFO },
  88. { "vt82c586a", PCI_DEVICE_ID_VIA_82C586_0, 0x20, 0x2f, ATA_UDMA2, VIA_SET_FIFO },
  89. { "vt82c586", PCI_DEVICE_ID_VIA_82C586_0, 0x00, 0x0f, 0x00, VIA_SET_FIFO },
  90. { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, 0x00, VIA_SET_FIFO | VIA_NO_UNMASK },
  91. { "vt82c576", PCI_DEVICE_ID_VIA_82C576, 0x00, 0x2f, 0x00, VIA_SET_FIFO | VIA_NO_UNMASK | VIA_BAD_ID },
  92. { "vtxxxx", PCI_DEVICE_ID_VIA_ANON, 0x00, 0x2f, ATA_UDMA6, VIA_BAD_AST },
  93. { NULL }
  94. };
  95. static unsigned int via_clock;
  96. static char *via_dma[] = { "16", "25", "33", "44", "66", "100", "133" };
  97. struct via82cxxx_dev
  98. {
  99. struct via_isa_bridge *via_config;
  100. unsigned int via_80w;
  101. u8 cached_device[2];
  102. };
  103. /**
  104. * via_set_speed - write timing registers
  105. * @dev: PCI device
  106. * @dn: device
  107. * @timing: IDE timing data to use
  108. *
  109. * via_set_speed writes timing values to the chipset registers
  110. */
  111. static void via_set_speed(ide_hwif_t *hwif, u8 dn, struct ide_timing *timing)
  112. {
  113. struct pci_dev *dev = to_pci_dev(hwif->dev);
  114. struct ide_host *host = pci_get_drvdata(dev);
  115. struct via82cxxx_dev *vdev = host->host_priv;
  116. u8 t;
  117. if (~vdev->via_config->flags & VIA_BAD_AST) {
  118. pci_read_config_byte(dev, VIA_ADDRESS_SETUP, &t);
  119. t = (t & ~(3 << ((3 - dn) << 1))) | ((clamp_val(timing->setup, 1, 4) - 1) << ((3 - dn) << 1));
  120. pci_write_config_byte(dev, VIA_ADDRESS_SETUP, t);
  121. }
  122. pci_write_config_byte(dev, VIA_8BIT_TIMING + (1 - (dn >> 1)),
  123. ((clamp_val(timing->act8b, 1, 16) - 1) << 4) | (clamp_val(timing->rec8b, 1, 16) - 1));
  124. pci_write_config_byte(dev, VIA_DRIVE_TIMING + (3 - dn),
  125. ((clamp_val(timing->active, 1, 16) - 1) << 4) | (clamp_val(timing->recover, 1, 16) - 1));
  126. switch (vdev->via_config->udma_mask) {
  127. case ATA_UDMA2: t = timing->udma ? (0xe0 | (clamp_val(timing->udma, 2, 5) - 2)) : 0x03; break;
  128. case ATA_UDMA4: t = timing->udma ? (0xe8 | (clamp_val(timing->udma, 2, 9) - 2)) : 0x0f; break;
  129. case ATA_UDMA5: t = timing->udma ? (0xe0 | (clamp_val(timing->udma, 2, 9) - 2)) : 0x07; break;
  130. case ATA_UDMA6: t = timing->udma ? (0xe0 | (clamp_val(timing->udma, 2, 9) - 2)) : 0x07; break;
  131. default: return;
  132. }
  133. pci_write_config_byte(dev, VIA_UDMA_TIMING + (3 - dn), t);
  134. }
  135. /**
  136. * via_set_drive - configure transfer mode
  137. * @drive: Drive to set up
  138. * @speed: desired speed
  139. *
  140. * via_set_drive() computes timing values configures the chipset to
  141. * a desired transfer mode. It also can be called by upper layers.
  142. */
  143. static void via_set_drive(ide_drive_t *drive, const u8 speed)
  144. {
  145. ide_hwif_t *hwif = drive->hwif;
  146. ide_drive_t *peer = ide_get_pair_dev(drive);
  147. struct pci_dev *dev = to_pci_dev(hwif->dev);
  148. struct ide_host *host = pci_get_drvdata(dev);
  149. struct via82cxxx_dev *vdev = host->host_priv;
  150. struct ide_timing t, p;
  151. unsigned int T, UT;
  152. T = 1000000000 / via_clock;
  153. switch (vdev->via_config->udma_mask) {
  154. case ATA_UDMA2: UT = T; break;
  155. case ATA_UDMA4: UT = T/2; break;
  156. case ATA_UDMA5: UT = T/3; break;
  157. case ATA_UDMA6: UT = T/4; break;
  158. default: UT = T;
  159. }
  160. ide_timing_compute(drive, speed, &t, T, UT);
  161. if (peer) {
  162. ide_timing_compute(peer, peer->current_speed, &p, T, UT);
  163. ide_timing_merge(&p, &t, &t, IDE_TIMING_8BIT);
  164. }
  165. via_set_speed(hwif, drive->dn, &t);
  166. }
  167. /**
  168. * via_set_pio_mode - set host controller for PIO mode
  169. * @drive: drive
  170. * @pio: PIO mode number
  171. *
  172. * A callback from the upper layers for PIO-only tuning.
  173. */
  174. static void via_set_pio_mode(ide_drive_t *drive, const u8 pio)
  175. {
  176. via_set_drive(drive, XFER_PIO_0 + pio);
  177. }
  178. static struct via_isa_bridge *via_config_find(struct pci_dev **isa)
  179. {
  180. struct via_isa_bridge *via_config;
  181. for (via_config = via_isa_bridges;
  182. via_config->id != PCI_DEVICE_ID_VIA_ANON; via_config++)
  183. if ((*isa = pci_get_device(PCI_VENDOR_ID_VIA +
  184. !!(via_config->flags & VIA_BAD_ID),
  185. via_config->id, NULL))) {
  186. if ((*isa)->revision >= via_config->rev_min &&
  187. (*isa)->revision <= via_config->rev_max)
  188. break;
  189. pci_dev_put(*isa);
  190. }
  191. return via_config;
  192. }
  193. /*
  194. * Check and handle 80-wire cable presence
  195. */
  196. static void via_cable_detect(struct via82cxxx_dev *vdev, u32 u)
  197. {
  198. int i;
  199. switch (vdev->via_config->udma_mask) {
  200. case ATA_UDMA4:
  201. for (i = 24; i >= 0; i -= 8)
  202. if (((u >> (i & 16)) & 8) &&
  203. ((u >> i) & 0x20) &&
  204. (((u >> i) & 7) < 2)) {
  205. /*
  206. * 2x PCI clock and
  207. * UDMA w/ < 3T/cycle
  208. */
  209. vdev->via_80w |= (1 << (1 - (i >> 4)));
  210. }
  211. break;
  212. case ATA_UDMA5:
  213. for (i = 24; i >= 0; i -= 8)
  214. if (((u >> i) & 0x10) ||
  215. (((u >> i) & 0x20) &&
  216. (((u >> i) & 7) < 4))) {
  217. /* BIOS 80-wire bit or
  218. * UDMA w/ < 60ns/cycle
  219. */
  220. vdev->via_80w |= (1 << (1 - (i >> 4)));
  221. }
  222. break;
  223. case ATA_UDMA6:
  224. for (i = 24; i >= 0; i -= 8)
  225. if (((u >> i) & 0x10) ||
  226. (((u >> i) & 0x20) &&
  227. (((u >> i) & 7) < 6))) {
  228. /* BIOS 80-wire bit or
  229. * UDMA w/ < 60ns/cycle
  230. */
  231. vdev->via_80w |= (1 << (1 - (i >> 4)));
  232. }
  233. break;
  234. }
  235. }
  236. /**
  237. * init_chipset_via82cxxx - initialization handler
  238. * @dev: PCI device
  239. *
  240. * The initialization callback. Here we determine the IDE chip type
  241. * and initialize its drive independent registers.
  242. */
  243. static int init_chipset_via82cxxx(struct pci_dev *dev)
  244. {
  245. struct ide_host *host = pci_get_drvdata(dev);
  246. struct via82cxxx_dev *vdev = host->host_priv;
  247. struct via_isa_bridge *via_config = vdev->via_config;
  248. u8 t, v;
  249. u32 u;
  250. /*
  251. * Detect cable and configure Clk66
  252. */
  253. pci_read_config_dword(dev, VIA_UDMA_TIMING, &u);
  254. via_cable_detect(vdev, u);
  255. if (via_config->udma_mask == ATA_UDMA4) {
  256. /* Enable Clk66 */
  257. pci_write_config_dword(dev, VIA_UDMA_TIMING, u|0x80008);
  258. } else if (via_config->flags & VIA_BAD_CLK66) {
  259. /* Would cause trouble on 596a and 686 */
  260. pci_write_config_dword(dev, VIA_UDMA_TIMING, u & ~0x80008);
  261. }
  262. /*
  263. * Check whether interfaces are enabled.
  264. */
  265. pci_read_config_byte(dev, VIA_IDE_ENABLE, &v);
  266. /*
  267. * Set up FIFO sizes and thresholds.
  268. */
  269. pci_read_config_byte(dev, VIA_FIFO_CONFIG, &t);
  270. /* Disable PREQ# till DDACK# */
  271. if (via_config->flags & VIA_BAD_PREQ) {
  272. /* Would crash on 586b rev 41 */
  273. t &= 0x7f;
  274. }
  275. /* Fix FIFO split between channels */
  276. if (via_config->flags & VIA_SET_FIFO) {
  277. t &= (t & 0x9f);
  278. switch (v & 3) {
  279. case 2: t |= 0x00; break; /* 16 on primary */
  280. case 1: t |= 0x60; break; /* 16 on secondary */
  281. case 3: t |= 0x20; break; /* 8 pri 8 sec */
  282. }
  283. }
  284. pci_write_config_byte(dev, VIA_FIFO_CONFIG, t);
  285. return 0;
  286. }
  287. /*
  288. * Cable special cases
  289. */
  290. static const struct dmi_system_id cable_dmi_table[] = {
  291. {
  292. .ident = "Acer Ferrari 3400",
  293. .matches = {
  294. DMI_MATCH(DMI_BOARD_VENDOR, "Acer,Inc."),
  295. DMI_MATCH(DMI_BOARD_NAME, "Ferrari 3400"),
  296. },
  297. },
  298. { }
  299. };
  300. static int via_cable_override(struct pci_dev *pdev)
  301. {
  302. /* Systems by DMI */
  303. if (dmi_check_system(cable_dmi_table))
  304. return 1;
  305. /* Arima W730-K8/Targa Visionary 811/... */
  306. if (pdev->subsystem_vendor == 0x161F &&
  307. pdev->subsystem_device == 0x2032)
  308. return 1;
  309. return 0;
  310. }
  311. static u8 via82cxxx_cable_detect(ide_hwif_t *hwif)
  312. {
  313. struct pci_dev *pdev = to_pci_dev(hwif->dev);
  314. struct ide_host *host = pci_get_drvdata(pdev);
  315. struct via82cxxx_dev *vdev = host->host_priv;
  316. if (via_cable_override(pdev))
  317. return ATA_CBL_PATA40_SHORT;
  318. if ((vdev->via_config->flags & VIA_SATA_PATA) && hwif->channel == 0)
  319. return ATA_CBL_SATA;
  320. if ((vdev->via_80w >> hwif->channel) & 1)
  321. return ATA_CBL_PATA80;
  322. else
  323. return ATA_CBL_PATA40;
  324. }
  325. static const struct ide_port_ops via_port_ops = {
  326. .set_pio_mode = via_set_pio_mode,
  327. .set_dma_mode = via_set_drive,
  328. .cable_detect = via82cxxx_cable_detect,
  329. };
  330. static void via_write_devctl(ide_hwif_t *hwif, u8 ctl)
  331. {
  332. struct via82cxxx_dev *vdev = hwif->host->host_priv;
  333. outb(ctl, hwif->io_ports.ctl_addr);
  334. outb(vdev->cached_device[hwif->channel], hwif->io_ports.device_addr);
  335. }
  336. static void __via_dev_select(ide_drive_t *drive, u8 select)
  337. {
  338. ide_hwif_t *hwif = drive->hwif;
  339. struct via82cxxx_dev *vdev = hwif->host->host_priv;
  340. outb(select, hwif->io_ports.device_addr);
  341. vdev->cached_device[hwif->channel] = select;
  342. }
  343. static void via_dev_select(ide_drive_t *drive)
  344. {
  345. __via_dev_select(drive, drive->select | ATA_DEVICE_OBS);
  346. }
  347. static void via_tf_load(ide_drive_t *drive, struct ide_taskfile *tf, u8 valid)
  348. {
  349. ide_hwif_t *hwif = drive->hwif;
  350. struct ide_io_ports *io_ports = &hwif->io_ports;
  351. if (valid & IDE_VALID_FEATURE)
  352. outb(tf->feature, io_ports->feature_addr);
  353. if (valid & IDE_VALID_NSECT)
  354. outb(tf->nsect, io_ports->nsect_addr);
  355. if (valid & IDE_VALID_LBAL)
  356. outb(tf->lbal, io_ports->lbal_addr);
  357. if (valid & IDE_VALID_LBAM)
  358. outb(tf->lbam, io_ports->lbam_addr);
  359. if (valid & IDE_VALID_LBAH)
  360. outb(tf->lbah, io_ports->lbah_addr);
  361. if (valid & IDE_VALID_DEVICE)
  362. __via_dev_select(drive, tf->device);
  363. }
  364. const struct ide_tp_ops via_tp_ops = {
  365. .exec_command = ide_exec_command,
  366. .read_status = ide_read_status,
  367. .read_altstatus = ide_read_altstatus,
  368. .write_devctl = via_write_devctl,
  369. .dev_select = via_dev_select,
  370. .tf_load = via_tf_load,
  371. .tf_read = ide_tf_read,
  372. .input_data = ide_input_data,
  373. .output_data = ide_output_data,
  374. };
  375. static const struct ide_port_info via82cxxx_chipset __devinitdata = {
  376. .name = DRV_NAME,
  377. .init_chipset = init_chipset_via82cxxx,
  378. .enablebits = { { 0x40, 0x02, 0x02 }, { 0x40, 0x01, 0x01 } },
  379. .tp_ops = &via_tp_ops,
  380. .port_ops = &via_port_ops,
  381. .host_flags = IDE_HFLAG_PIO_NO_BLACKLIST |
  382. IDE_HFLAG_POST_SET_MODE |
  383. IDE_HFLAG_IO_32BIT,
  384. .pio_mask = ATA_PIO5,
  385. .swdma_mask = ATA_SWDMA2,
  386. .mwdma_mask = ATA_MWDMA2,
  387. };
  388. static int __devinit via_init_one(struct pci_dev *dev, const struct pci_device_id *id)
  389. {
  390. struct pci_dev *isa = NULL;
  391. struct via_isa_bridge *via_config;
  392. struct via82cxxx_dev *vdev;
  393. int rc;
  394. u8 idx = id->driver_data;
  395. struct ide_port_info d;
  396. d = via82cxxx_chipset;
  397. /*
  398. * Find the ISA bridge and check we know what it is.
  399. */
  400. via_config = via_config_find(&isa);
  401. /*
  402. * Print the boot message.
  403. */
  404. printk(KERN_INFO DRV_NAME " %s: VIA %s (rev %02x) IDE %sDMA%s\n",
  405. pci_name(dev), via_config->name, isa->revision,
  406. via_config->udma_mask ? "U" : "MW",
  407. via_dma[via_config->udma_mask ?
  408. (fls(via_config->udma_mask) - 1) : 0]);
  409. pci_dev_put(isa);
  410. /*
  411. * Determine system bus clock.
  412. */
  413. via_clock = (ide_pci_clk ? ide_pci_clk : 33) * 1000;
  414. switch (via_clock) {
  415. case 33000: via_clock = 33333; break;
  416. case 37000: via_clock = 37500; break;
  417. case 41000: via_clock = 41666; break;
  418. }
  419. if (via_clock < 20000 || via_clock > 50000) {
  420. printk(KERN_WARNING DRV_NAME ": User given PCI clock speed "
  421. "impossible (%d), using 33 MHz instead.\n", via_clock);
  422. via_clock = 33333;
  423. }
  424. if (idx == 1)
  425. d.enablebits[1].reg = d.enablebits[0].reg = 0;
  426. else
  427. d.host_flags |= IDE_HFLAG_NO_AUTODMA;
  428. if (idx == VIA_IDFLAG_SINGLE)
  429. d.host_flags |= IDE_HFLAG_SINGLE;
  430. if ((via_config->flags & VIA_NO_UNMASK) == 0)
  431. d.host_flags |= IDE_HFLAG_UNMASK_IRQS;
  432. d.udma_mask = via_config->udma_mask;
  433. vdev = kzalloc(sizeof(*vdev), GFP_KERNEL);
  434. if (!vdev) {
  435. printk(KERN_ERR DRV_NAME " %s: out of memory :(\n",
  436. pci_name(dev));
  437. return -ENOMEM;
  438. }
  439. vdev->via_config = via_config;
  440. rc = ide_pci_init_one(dev, &d, vdev);
  441. if (rc)
  442. kfree(vdev);
  443. return rc;
  444. }
  445. static void __devexit via_remove(struct pci_dev *dev)
  446. {
  447. struct ide_host *host = pci_get_drvdata(dev);
  448. struct via82cxxx_dev *vdev = host->host_priv;
  449. ide_pci_remove(dev);
  450. kfree(vdev);
  451. }
  452. static const struct pci_device_id via_pci_tbl[] = {
  453. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_82C576_1), 0 },
  454. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_82C586_1), 0 },
  455. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_CX700_IDE), 0 },
  456. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_VX855_IDE), VIA_IDFLAG_SINGLE },
  457. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_6410), 1 },
  458. { PCI_VDEVICE(VIA, PCI_DEVICE_ID_VIA_SATA_EIDE), 1 },
  459. { 0, },
  460. };
  461. MODULE_DEVICE_TABLE(pci, via_pci_tbl);
  462. static struct pci_driver via_pci_driver = {
  463. .name = "VIA_IDE",
  464. .id_table = via_pci_tbl,
  465. .probe = via_init_one,
  466. .remove = __devexit_p(via_remove),
  467. .suspend = ide_pci_suspend,
  468. .resume = ide_pci_resume,
  469. };
  470. static int __init via_ide_init(void)
  471. {
  472. return ide_pci_register_driver(&via_pci_driver);
  473. }
  474. static void __exit via_ide_exit(void)
  475. {
  476. pci_unregister_driver(&via_pci_driver);
  477. }
  478. module_init(via_ide_init);
  479. module_exit(via_ide_exit);
  480. MODULE_AUTHOR("Vojtech Pavlik, Bartlomiej Zolnierkiewicz, Michel Aubry, Jeff Garzik, Andre Hedrick");
  481. MODULE_DESCRIPTION("PCI driver module for VIA IDE");
  482. MODULE_LICENSE("GPL");