blob: 0e2a5d22bbd31f51cb7dd2b2de266917b912faab [file] [log] [blame]
Jeff Garzik669a5db2006-08-29 18:12:40 -04001/*
2 * pata_sil680.c - SIL680 PATA for new ATA layer
3 * (C) 2005 Red Hat Inc
Jeff Garzik669a5db2006-08-29 18:12:40 -04004 *
5 * based upon
6 *
7 * linux/drivers/ide/pci/siimage.c Version 1.07 Nov 30, 2003
8 *
9 * Copyright (C) 2001-2002 Andre Hedrick <andre@linux-ide.org>
10 * Copyright (C) 2003 Red Hat <alan@redhat.com>
11 *
12 * May be copied or modified under the terms of the GNU General Public License
13 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030014 * Documentation publicly available.
Jeff Garzik669a5db2006-08-29 18:12:40 -040015 *
16 * If you have strange problems with nVidia chipset systems please
17 * see the SI support documentation and update your system BIOS
Robert P. J. Day3a4fa0a2007-10-19 23:10:43 +020018 * if necessary
Jeff Garzik669a5db2006-08-29 18:12:40 -040019 *
20 * TODO
21 * If we know all our devices are LBA28 (or LBA28 sized) we could use
22 * the command fifo mode.
23 */
24
25#include <linux/kernel.h>
26#include <linux/module.h>
27#include <linux/pci.h>
28#include <linux/init.h>
29#include <linux/blkdev.h>
30#include <linux/delay.h>
31#include <scsi/scsi_host.h>
32#include <linux/libata.h>
33
34#define DRV_NAME "pata_sil680"
Alan Cox871af122009-01-05 14:16:39 +000035#define DRV_VERSION "0.4.9"
Jeff Garzik669a5db2006-08-29 18:12:40 -040036
Jeff Garzik79b0bde12007-05-28 07:22:30 -040037#define SIL680_MMIO_BAR 5
38
Jeff Garzik669a5db2006-08-29 18:12:40 -040039/**
40 * sil680_selreg - return register base
Bartlomiej Zolnierkiewicz63521872011-10-11 20:17:05 +020041 * @ap: ATA interface
Jeff Garzik669a5db2006-08-29 18:12:40 -040042 * @r: config offset
43 *
Bartlomiej Zolnierkiewicz63521872011-10-11 20:17:05 +020044 * Turn a config register offset into the right address in PCI space
45 * to access the control register in question.
46 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -030047 * Thankfully this is a configuration operation so isn't performance
Jeff Garzik669a5db2006-08-29 18:12:40 -040048 * criticial.
49 */
50
51static unsigned long sil680_selreg(struct ata_port *ap, int r)
52{
53 unsigned long base = 0xA0 + r;
54 base += (ap->port_no << 4);
55 return base;
56}
57
58/**
59 * sil680_seldev - return register base
Bartlomiej Zolnierkiewicz63521872011-10-11 20:17:05 +020060 * @ap: ATA interface
Jeff Garzik669a5db2006-08-29 18:12:40 -040061 * @r: config offset
62 *
Bartlomiej Zolnierkiewicz63521872011-10-11 20:17:05 +020063 * Turn a config register offset into the right address in PCI space
64 * to access the control register in question including accounting for
65 * the unit shift.
Jeff Garzik669a5db2006-08-29 18:12:40 -040066 */
67
68static unsigned long sil680_seldev(struct ata_port *ap, struct ata_device *adev, int r)
69{
70 unsigned long base = 0xA0 + r;
71 base += (ap->port_no << 4);
72 base |= adev->devno ? 2 : 0;
73 return base;
74}
75
76
77/**
78 * sil680_cable_detect - cable detection
79 * @ap: ATA port
80 *
81 * Perform cable detection. The SIL680 stores this in PCI config
82 * space for us.
83 */
84
85static int sil680_cable_detect(struct ata_port *ap) {
86 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
87 unsigned long addr = sil680_selreg(ap, 0);
88 u8 ata66;
89 pci_read_config_byte(pdev, addr, &ata66);
90 if (ata66 & 1)
91 return ATA_CBL_PATA80;
92 else
93 return ATA_CBL_PATA40;
94}
95
Jeff Garzik669a5db2006-08-29 18:12:40 -040096/**
Bartlomiej Zolnierkiewicz63521872011-10-11 20:17:05 +020097 * sil680_set_piomode - set PIO mode data
Jeff Garzik669a5db2006-08-29 18:12:40 -040098 * @ap: ATA interface
99 * @adev: ATA device
100 *
101 * Program the SIL680 registers for PIO mode. Note that the task speed
102 * registers are shared between the devices so we must pick the lowest
103 * mode for command work.
104 */
105
106static void sil680_set_piomode(struct ata_port *ap, struct ata_device *adev)
107{
108 static u16 speed_p[5] = { 0x328A, 0x2283, 0x1104, 0x10C3, 0x10C1 };
Sergei Shtylyov5dcade92007-01-28 21:33:44 +0300109 static u16 speed_t[5] = { 0x328A, 0x2283, 0x1281, 0x10C3, 0x10C1 };
Jeff Garzik669a5db2006-08-29 18:12:40 -0400110
111 unsigned long tfaddr = sil680_selreg(ap, 0x02);
112 unsigned long addr = sil680_seldev(ap, adev, 0x04);
Alancb0e34b2007-02-20 17:49:25 +0000113 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400114 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
115 int pio = adev->pio_mode - XFER_PIO_0;
116 int lowest_pio = pio;
Alancb0e34b2007-02-20 17:49:25 +0000117 int port_shift = 4 * adev->devno;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400118 u16 reg;
Alancb0e34b2007-02-20 17:49:25 +0000119 u8 mode;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400120
121 struct ata_device *pair = ata_dev_pair(adev);
122
123 if (pair != NULL && adev->pio_mode > pair->pio_mode)
124 lowest_pio = pair->pio_mode - XFER_PIO_0;
125
126 pci_write_config_word(pdev, addr, speed_p[pio]);
127 pci_write_config_word(pdev, tfaddr, speed_t[lowest_pio]);
128
129 pci_read_config_word(pdev, tfaddr-2, &reg);
Alancb0e34b2007-02-20 17:49:25 +0000130 pci_read_config_byte(pdev, addr_mask, &mode);
Jeff Garzika84471f2007-02-26 05:51:33 -0500131
Jeff Garzik669a5db2006-08-29 18:12:40 -0400132 reg &= ~0x0200; /* Clear IORDY */
Alancb0e34b2007-02-20 17:49:25 +0000133 mode &= ~(3 << port_shift); /* Clear IORDY and DMA bits */
Jeff Garzika84471f2007-02-26 05:51:33 -0500134
Alancb0e34b2007-02-20 17:49:25 +0000135 if (ata_pio_need_iordy(adev)) {
Jeff Garzik669a5db2006-08-29 18:12:40 -0400136 reg |= 0x0200; /* Enable IORDY */
Alancb0e34b2007-02-20 17:49:25 +0000137 mode |= 1 << port_shift;
138 }
Jeff Garzik669a5db2006-08-29 18:12:40 -0400139 pci_write_config_word(pdev, tfaddr-2, reg);
Alancb0e34b2007-02-20 17:49:25 +0000140 pci_write_config_byte(pdev, addr_mask, mode);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400141}
142
143/**
Bartlomiej Zolnierkiewicz63521872011-10-11 20:17:05 +0200144 * sil680_set_dmamode - set DMA mode data
Jeff Garzik669a5db2006-08-29 18:12:40 -0400145 * @ap: ATA interface
146 * @adev: ATA device
147 *
Bartlomiej Zolnierkiewicz63521872011-10-11 20:17:05 +0200148 * Program the MWDMA/UDMA modes for the sil680 chipset.
149 *
150 * The MWDMA mode values are pulled from a lookup table
Jeff Garzik669a5db2006-08-29 18:12:40 -0400151 * while the chipset uses mode number for UDMA.
152 */
153
154static void sil680_set_dmamode(struct ata_port *ap, struct ata_device *adev)
155{
156 static u8 ultra_table[2][7] = {
157 { 0x0C, 0x07, 0x05, 0x04, 0x02, 0x01, 0xFF }, /* 100MHz */
158 { 0x0F, 0x0B, 0x07, 0x05, 0x03, 0x02, 0x01 }, /* 133Mhz */
159 };
160 static u16 dma_table[3] = { 0x2208, 0x10C2, 0x10C1 };
161
162 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
163 unsigned long ma = sil680_seldev(ap, adev, 0x08);
164 unsigned long ua = sil680_seldev(ap, adev, 0x0C);
165 unsigned long addr_mask = 0x80 + 4 * ap->port_no;
166 int port_shift = adev->devno * 4;
167 u8 scsc, mode;
168 u16 multi, ultra;
169
170 pci_read_config_byte(pdev, 0x8A, &scsc);
171 pci_read_config_byte(pdev, addr_mask, &mode);
172 pci_read_config_word(pdev, ma, &multi);
173 pci_read_config_word(pdev, ua, &ultra);
174
175 /* Mask timing bits */
176 ultra &= ~0x3F;
177 mode &= ~(0x03 << port_shift);
178
179 /* Extract scsc */
180 scsc = (scsc & 0x30) ? 1: 0;
181
182 if (adev->dma_mode >= XFER_UDMA_0) {
183 multi = 0x10C1;
184 ultra |= ultra_table[scsc][adev->dma_mode - XFER_UDMA_0];
185 mode |= (0x03 << port_shift);
186 } else {
187 multi = dma_table[adev->dma_mode - XFER_MW_DMA_0];
188 mode |= (0x02 << port_shift);
189 }
190 pci_write_config_byte(pdev, addr_mask, mode);
191 pci_write_config_word(pdev, ma, multi);
192 pci_write_config_word(pdev, ua, ultra);
193}
194
Alan Coxc4acf992010-05-05 10:25:58 +0100195/**
196 * sil680_sff_exec_command - issue ATA command to host controller
197 * @ap: port to which command is being issued
198 * @tf: ATA taskfile register set
199 *
200 * Issues ATA command, with proper synchronization with interrupt
201 * handler / other threads. Use our MMIO space for PCI posting to avoid
202 * a hideously slow cycle all the way to the device.
203 *
204 * LOCKING:
205 * spin_lock_irqsave(host lock)
206 */
Sergei Shtylyovada5b122010-10-05 20:31:47 +0400207static void sil680_sff_exec_command(struct ata_port *ap,
208 const struct ata_taskfile *tf)
Alan Coxc4acf992010-05-05 10:25:58 +0100209{
210 DPRINTK("ata%u: cmd 0x%X\n", ap->print_id, tf->command);
211 iowrite8(tf->command, ap->ioaddr.command_addr);
212 ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
213}
214
Sergei Shtylyov9b980e12010-10-08 19:01:08 +0400215static bool sil680_sff_irq_check(struct ata_port *ap)
216{
217 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
218 unsigned long addr = sil680_selreg(ap, 1);
219 u8 val;
220
221 pci_read_config_byte(pdev, addr, &val);
222
223 return val & 0x08;
224}
225
Jeff Garzik669a5db2006-08-29 18:12:40 -0400226static struct scsi_host_template sil680_sht = {
Tejun Heo68d1d072008-03-25 12:22:49 +0900227 ATA_BMDMA_SHT(DRV_NAME),
Jeff Garzik669a5db2006-08-29 18:12:40 -0400228};
229
Alan Coxc4acf992010-05-05 10:25:58 +0100230
Jeff Garzik669a5db2006-08-29 18:12:40 -0400231static struct ata_port_operations sil680_port_ops = {
Alan Coxc4acf992010-05-05 10:25:58 +0100232 .inherits = &ata_bmdma32_port_ops,
233 .sff_exec_command = sil680_sff_exec_command,
Sergei Shtylyov9b980e12010-10-08 19:01:08 +0400234 .sff_irq_check = sil680_sff_irq_check,
Alan Coxc4acf992010-05-05 10:25:58 +0100235 .cable_detect = sil680_cable_detect,
236 .set_piomode = sil680_set_piomode,
237 .set_dmamode = sil680_set_dmamode,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400238};
239
Alan8550c162006-11-22 17:28:41 +0000240/**
241 * sil680_init_chip - chip setup
242 * @pdev: PCI device
243 *
244 * Perform all the chip setup which must be done both when the device
245 * is powered up on boot and when we resume in case we resumed from RAM.
246 * Returns the final clock settings.
247 */
Jeff Garzikf20b16f2006-12-11 11:14:06 -0500248
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400249static u8 sil680_init_chip(struct pci_dev *pdev, int *try_mmio)
Jeff Garzik669a5db2006-08-29 18:12:40 -0400250{
Jeff Garzik669a5db2006-08-29 18:12:40 -0400251 u8 tmpbyte = 0;
252
Jeff Garzik669a5db2006-08-29 18:12:40 -0400253 /* FIXME: double check */
Sergei Shtylyov89d3b362009-11-24 22:54:49 +0400254 pci_write_config_byte(pdev, PCI_CACHE_LINE_SIZE,
255 pdev->revision ? 1 : 255);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400256
257 pci_write_config_byte(pdev, 0x80, 0x00);
258 pci_write_config_byte(pdev, 0x84, 0x00);
259
260 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
261
Jeff Garzik79b0bde12007-05-28 07:22:30 -0400262 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
263 tmpbyte & 1, tmpbyte & 0x30);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400264
Benjamin Herrenschmidt0f436ef2008-03-28 14:52:29 -0700265 *try_mmio = 0;
Kumar Gala47d692a2008-09-22 14:47:33 -0700266#ifdef CONFIG_PPC
Benjamin Herrenschmidt0f436ef2008-03-28 14:52:29 -0700267 if (machine_is(cell))
268 *try_mmio = (tmpbyte & 1) || pci_resource_start(pdev, 5);
269#endif
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400270
Jeff Garzik669a5db2006-08-29 18:12:40 -0400271 switch(tmpbyte & 0x30) {
272 case 0x00:
273 /* 133 clock attempt to force it on */
274 pci_write_config_byte(pdev, 0x8A, tmpbyte|0x10);
275 break;
276 case 0x30:
277 /* if clocking is disabled */
278 /* 133 clock attempt to force it on */
279 pci_write_config_byte(pdev, 0x8A, tmpbyte & ~0x20);
280 break;
281 case 0x10:
282 /* 133 already */
283 break;
284 case 0x20:
285 /* BIOS set PCI x2 clocking */
286 break;
287 }
288
289 pci_read_config_byte(pdev, 0x8A, &tmpbyte);
Jeff Garzik79b0bde12007-05-28 07:22:30 -0400290 dev_dbg(&pdev->dev, "sil680: BA5_EN = %d clock = %02X\n",
291 tmpbyte & 1, tmpbyte & 0x30);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400292
293 pci_write_config_byte(pdev, 0xA1, 0x72);
294 pci_write_config_word(pdev, 0xA2, 0x328A);
295 pci_write_config_dword(pdev, 0xA4, 0x62DD62DD);
296 pci_write_config_dword(pdev, 0xA8, 0x43924392);
297 pci_write_config_dword(pdev, 0xAC, 0x40094009);
298 pci_write_config_byte(pdev, 0xB1, 0x72);
299 pci_write_config_word(pdev, 0xB2, 0x328A);
300 pci_write_config_dword(pdev, 0xB4, 0x62DD62DD);
301 pci_write_config_dword(pdev, 0xB8, 0x43924392);
302 pci_write_config_dword(pdev, 0xBC, 0x40094009);
303
304 switch(tmpbyte & 0x30) {
305 case 0x00: printk(KERN_INFO "sil680: 100MHz clock.\n");break;
306 case 0x10: printk(KERN_INFO "sil680: 133MHz clock.\n");break;
307 case 0x20: printk(KERN_INFO "sil680: Using PCI clock.\n");break;
308 /* This last case is _NOT_ ok */
309 case 0x30: printk(KERN_ERR "sil680: Clock disabled ?\n");
Alan8550c162006-11-22 17:28:41 +0000310 }
311 return tmpbyte & 0x30;
312}
313
Jeff Garzik79b0bde12007-05-28 07:22:30 -0400314static int __devinit sil680_init_one(struct pci_dev *pdev,
315 const struct pci_device_id *id)
Alan8550c162006-11-22 17:28:41 +0000316{
Tejun Heo1626aeb2007-05-04 12:43:58 +0200317 static const struct ata_port_info info = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400318 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100319 .pio_mask = ATA_PIO4,
320 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400321 .udma_mask = ATA_UDMA6,
Alan8550c162006-11-22 17:28:41 +0000322 .port_ops = &sil680_port_ops
323 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200324 static const struct ata_port_info info_slow = {
Jeff Garzik1d2808f2007-05-28 06:59:48 -0400325 .flags = ATA_FLAG_SLAVE_POSS,
Erik Inge Bolsø14bdef92009-03-14 21:38:24 +0100326 .pio_mask = ATA_PIO4,
327 .mwdma_mask = ATA_MWDMA2,
Jeff Garzikbf6263a2007-07-09 12:16:50 -0400328 .udma_mask = ATA_UDMA5,
Alan8550c162006-11-22 17:28:41 +0000329 .port_ops = &sil680_port_ops
330 };
Tejun Heo1626aeb2007-05-04 12:43:58 +0200331 const struct ata_port_info *ppi[] = { &info, NULL };
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400332 struct ata_host *host;
333 void __iomem *mmio_base;
334 int rc, try_mmio;
Alan8550c162006-11-22 17:28:41 +0000335
Joe Perches06296a12011-04-15 15:52:00 -0700336 ata_print_version_once(&pdev->dev, DRV_VERSION);
Alan8550c162006-11-22 17:28:41 +0000337
Tejun Heof08048e2008-03-25 12:22:47 +0900338 rc = pcim_enable_device(pdev);
339 if (rc)
340 return rc;
341
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400342 switch (sil680_init_chip(pdev, &try_mmio)) {
Alan8550c162006-11-22 17:28:41 +0000343 case 0:
Tejun Heo1626aeb2007-05-04 12:43:58 +0200344 ppi[0] = &info_slow;
Alan8550c162006-11-22 17:28:41 +0000345 break;
346 case 0x30:
347 return -ENODEV;
Jeff Garzik669a5db2006-08-29 18:12:40 -0400348 }
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400349
350 if (!try_mmio)
351 goto use_ioports;
352
353 /* Try to acquire MMIO resources and fallback to PIO if
354 * that fails
355 */
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400356 rc = pcim_iomap_regions(pdev, 1 << SIL680_MMIO_BAR, DRV_NAME);
357 if (rc)
358 goto use_ioports;
359
360 /* Allocate host and set it up */
361 host = ata_host_alloc_pinfo(&pdev->dev, ppi, 2);
362 if (!host)
363 return -ENOMEM;
364 host->iomap = pcim_iomap_table(pdev);
365
366 /* Setup DMA masks */
367 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
368 if (rc)
369 return rc;
370 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
371 if (rc)
372 return rc;
373 pci_set_master(pdev);
374
375 /* Get MMIO base and initialize port addresses */
376 mmio_base = host->iomap[SIL680_MMIO_BAR];
377 host->ports[0]->ioaddr.bmdma_addr = mmio_base + 0x00;
378 host->ports[0]->ioaddr.cmd_addr = mmio_base + 0x80;
379 host->ports[0]->ioaddr.ctl_addr = mmio_base + 0x8a;
380 host->ports[0]->ioaddr.altstatus_addr = mmio_base + 0x8a;
Tejun Heo9363c382008-04-07 22:47:16 +0900381 ata_sff_std_ports(&host->ports[0]->ioaddr);
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400382 host->ports[1]->ioaddr.bmdma_addr = mmio_base + 0x08;
383 host->ports[1]->ioaddr.cmd_addr = mmio_base + 0xc0;
384 host->ports[1]->ioaddr.ctl_addr = mmio_base + 0xca;
385 host->ports[1]->ioaddr.altstatus_addr = mmio_base + 0xca;
Tejun Heo9363c382008-04-07 22:47:16 +0900386 ata_sff_std_ports(&host->ports[1]->ioaddr);
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400387
388 /* Register & activate */
Tejun Heoc3b28892010-05-19 22:10:21 +0200389 return ata_host_activate(host, pdev->irq, ata_bmdma_interrupt,
Tejun Heo9363c382008-04-07 22:47:16 +0900390 IRQF_SHARED, &sil680_sht);
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400391
392use_ioports:
Tejun Heo1c5afdf2010-05-19 22:10:22 +0200393 return ata_pci_bmdma_init_one(pdev, ppi, &sil680_sht, NULL, 0);
Jeff Garzik669a5db2006-08-29 18:12:40 -0400394}
395
Tejun Heo438ac6d2007-03-02 17:31:26 +0900396#ifdef CONFIG_PM
Alan8550c162006-11-22 17:28:41 +0000397static int sil680_reinit_one(struct pci_dev *pdev)
398{
Tejun Heof08048e2008-03-25 12:22:47 +0900399 struct ata_host *host = dev_get_drvdata(&pdev->dev);
400 int try_mmio, rc;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400401
Tejun Heof08048e2008-03-25 12:22:47 +0900402 rc = ata_pci_device_do_resume(pdev);
403 if (rc)
404 return rc;
Benjamin Herrenschmidt2b9e68f2007-07-06 19:21:22 -0400405 sil680_init_chip(pdev, &try_mmio);
Tejun Heof08048e2008-03-25 12:22:47 +0900406 ata_host_resume(host);
407 return 0;
Alan8550c162006-11-22 17:28:41 +0000408}
Tejun Heo438ac6d2007-03-02 17:31:26 +0900409#endif
Alan8550c162006-11-22 17:28:41 +0000410
Jeff Garzik669a5db2006-08-29 18:12:40 -0400411static const struct pci_device_id sil680[] = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400412 { PCI_VDEVICE(CMD, PCI_DEVICE_ID_SII_680), },
413
414 { },
Jeff Garzik669a5db2006-08-29 18:12:40 -0400415};
416
417static struct pci_driver sil680_pci_driver = {
Jeff Garzik2d2744f2006-09-28 20:21:59 -0400418 .name = DRV_NAME,
Jeff Garzik669a5db2006-08-29 18:12:40 -0400419 .id_table = sil680,
420 .probe = sil680_init_one,
Alan8550c162006-11-22 17:28:41 +0000421 .remove = ata_pci_remove_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900422#ifdef CONFIG_PM
Alan8550c162006-11-22 17:28:41 +0000423 .suspend = ata_pci_device_suspend,
424 .resume = sil680_reinit_one,
Tejun Heo438ac6d2007-03-02 17:31:26 +0900425#endif
Jeff Garzik669a5db2006-08-29 18:12:40 -0400426};
427
428static int __init sil680_init(void)
429{
430 return pci_register_driver(&sil680_pci_driver);
431}
432
Jeff Garzik669a5db2006-08-29 18:12:40 -0400433static void __exit sil680_exit(void)
434{
435 pci_unregister_driver(&sil680_pci_driver);
436}
437
Jeff Garzik669a5db2006-08-29 18:12:40 -0400438MODULE_AUTHOR("Alan Cox");
439MODULE_DESCRIPTION("low-level driver for SI680 PATA");
440MODULE_LICENSE("GPL");
441MODULE_DEVICE_TABLE(pci, sil680);
442MODULE_VERSION(DRV_VERSION);
443
444module_init(sil680_init);
445module_exit(sil680_exit);