patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / drivers / scsi / sata_promise.c
1 /*
2  *  sata_promise.c - Promise SATA
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.
9  *
10  *  The contents of this file are subject to the Open
11  *  Software License version 1.1 that can be found at
12  *  http://www.opensource.org/licenses/osl-1.1.txt and is included herein
13  *  by reference.
14  *
15  *  Alternatively, the contents of this file may be used under the terms
16  *  of the GNU General Public License version 2 (the "GPL") as distributed
17  *  in the kernel source COPYING file, in which case the provisions of
18  *  the GPL are applicable instead of the above.  If you wish to allow
19  *  the use of your version of this file only under the terms of the
20  *  GPL and not to allow others to use your version of this file under
21  *  the OSL, indicate your decision by deleting the provisions above and
22  *  replace them with the notice and other provisions required by the GPL.
23  *  If you do not delete the provisions above, a recipient may use your
24  *  version of this file under either the OSL or the GPL.
25  *
26  */
27
28 #include <linux/kernel.h>
29 #include <linux/module.h>
30 #include <linux/pci.h>
31 #include <linux/init.h>
32 #include <linux/blkdev.h>
33 #include <linux/delay.h>
34 #include <linux/interrupt.h>
35 #include <linux/sched.h>
36 #include "scsi.h"
37 #include <scsi/scsi_host.h>
38 #include <linux/libata.h>
39 #include <asm/io.h>
40 #include "sata_promise.h"
41
42 #define DRV_NAME        "sata_promise"
43 #define DRV_VERSION     "1.00"
44
45
46 enum {
47         PDC_PKT_SUBMIT          = 0x40, /* Command packet pointer addr */
48         PDC_INT_SEQMASK         = 0x40, /* Mask of asserted SEQ INTs */
49         PDC_TBG_MODE            = 0x41, /* TBG mode */
50         PDC_FLASH_CTL           = 0x44, /* Flash control register */
51         PDC_PCI_CTL             = 0x48, /* PCI control and status register */
52         PDC_GLOBAL_CTL          = 0x48, /* Global control/status (per port) */
53         PDC_CTLSTAT             = 0x60, /* IDE control and status (per port) */
54         PDC_SATA_PLUG_CSR       = 0x6C, /* SATA Plug control/status reg */
55         PDC_SLEW_CTL            = 0x470, /* slew rate control reg */
56
57         PDC_ERR_MASK            = (1<<19) | (1<<20) | (1<<21) | (1<<22) |
58                                   (1<<8) | (1<<9) | (1<<10),
59
60         board_2037x             = 0,    /* FastTrak S150 TX2plus */
61         board_20319             = 1,    /* FastTrak S150 TX4 */
62
63         PDC_HAS_PATA            = (1 << 1), /* PDC20375 has PATA */
64
65         PDC_RESET               = (1 << 11), /* HDMA reset */
66 };
67
68
69 struct pdc_port_priv {
70         u8                      *pkt;
71         dma_addr_t              pkt_dma;
72 };
73
74 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg);
75 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
76 static int pdc_sata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
77 static void pdc_dma_setup(struct ata_queued_cmd *qc);
78 static void pdc_dma_start(struct ata_queued_cmd *qc);
79 static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs);
80 static void pdc_eng_timeout(struct ata_port *ap);
81 static int pdc_port_start(struct ata_port *ap);
82 static void pdc_port_stop(struct ata_port *ap);
83 static void pdc_phy_reset(struct ata_port *ap);
84 static void pdc_fill_sg(struct ata_queued_cmd *qc);
85 static void pdc_tf_load_mmio(struct ata_port *ap, struct ata_taskfile *tf);
86 static void pdc_exec_command_mmio(struct ata_port *ap, struct ata_taskfile *tf);
87 static inline void pdc_dma_complete (struct ata_port *ap,
88                                      struct ata_queued_cmd *qc, int have_err);
89
90 static Scsi_Host_Template pdc_sata_sht = {
91         .module                 = THIS_MODULE,
92         .name                   = DRV_NAME,
93         .queuecommand           = ata_scsi_queuecmd,
94         .eh_strategy_handler    = ata_scsi_error,
95         .can_queue              = ATA_DEF_QUEUE,
96         .this_id                = ATA_SHT_THIS_ID,
97         .sg_tablesize           = LIBATA_MAX_PRD,
98         .max_sectors            = ATA_MAX_SECTORS,
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         .bios_param             = ata_std_bios_param,
106 };
107
108 static struct ata_port_operations pdc_sata_ops = {
109         .port_disable           = ata_port_disable,
110         .tf_load                = pdc_tf_load_mmio,
111         .tf_read                = ata_tf_read_mmio,
112         .check_status           = ata_check_status_mmio,
113         .exec_command           = pdc_exec_command_mmio,
114         .phy_reset              = pdc_phy_reset,
115         .bmdma_setup            = pdc_dma_setup,
116         .bmdma_start            = pdc_dma_start,
117         .fill_sg                = pdc_fill_sg,
118         .eng_timeout            = pdc_eng_timeout,
119         .irq_handler            = pdc_interrupt,
120         .scr_read               = pdc_sata_scr_read,
121         .scr_write              = pdc_sata_scr_write,
122         .port_start             = pdc_port_start,
123         .port_stop              = pdc_port_stop,
124 };
125
126 static struct ata_port_info pdc_port_info[] = {
127         /* board_2037x */
128         {
129                 .sht            = &pdc_sata_sht,
130                 .host_flags     = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
131                                   ATA_FLAG_SRST | ATA_FLAG_MMIO,
132                 .pio_mask       = 0x03, /* pio3-4 */
133                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
134                 .port_ops       = &pdc_sata_ops,
135         },
136
137         /* board_20319 */
138         {
139                 .sht            = &pdc_sata_sht,
140                 .host_flags     = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
141                                   ATA_FLAG_SRST | ATA_FLAG_MMIO,
142                 .pio_mask       = 0x03, /* pio3-4 */
143                 .udma_mask      = 0x7f, /* udma0-6 ; FIXME */
144                 .port_ops       = &pdc_sata_ops,
145         },
146 };
147
148 static struct pci_device_id pdc_sata_pci_tbl[] = {
149         { PCI_VENDOR_ID_PROMISE, 0x3371, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
150           board_2037x },
151         { PCI_VENDOR_ID_PROMISE, 0x3373, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
152           board_2037x },
153         { PCI_VENDOR_ID_PROMISE, 0x3375, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
154           board_2037x },
155         { PCI_VENDOR_ID_PROMISE, 0x3376, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
156           board_2037x },
157         { PCI_VENDOR_ID_PROMISE, 0x3318, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
158           board_20319 },
159         { PCI_VENDOR_ID_PROMISE, 0x3319, PCI_ANY_ID, PCI_ANY_ID, 0, 0,
160           board_20319 },
161         { }     /* terminate list */
162 };
163
164
165 static struct pci_driver pdc_sata_pci_driver = {
166         .name                   = DRV_NAME,
167         .id_table               = pdc_sata_pci_tbl,
168         .probe                  = pdc_sata_init_one,
169         .remove                 = ata_pci_remove_one,
170 };
171
172
173 static int pdc_port_start(struct ata_port *ap)
174 {
175         struct pci_dev *pdev = ap->host_set->pdev;
176         struct pdc_port_priv *pp;
177         int rc;
178
179         rc = ata_port_start(ap);
180         if (rc)
181                 return rc;
182
183         pp = kmalloc(sizeof(*pp), GFP_KERNEL);
184         if (!pp) {
185                 rc = -ENOMEM;
186                 goto err_out;
187         }
188         memset(pp, 0, sizeof(*pp));
189
190         pp->pkt = pci_alloc_consistent(pdev, 128, &pp->pkt_dma);
191         if (!pp->pkt) {
192                 rc = -ENOMEM;
193                 goto err_out_kfree;
194         }
195
196         ap->private_data = pp;
197
198         return 0;
199
200 err_out_kfree:
201         kfree(pp);
202 err_out:
203         ata_port_stop(ap);
204         return rc;
205 }
206
207
208 static void pdc_port_stop(struct ata_port *ap)
209 {
210         struct pci_dev *pdev = ap->host_set->pdev;
211         struct pdc_port_priv *pp = ap->private_data;
212
213         ap->private_data = NULL;
214         pci_free_consistent(pdev, 128, pp->pkt, pp->pkt_dma);
215         kfree(pp);
216         ata_port_stop(ap);
217 }
218
219
220 static void pdc_reset_port(struct ata_port *ap)
221 {
222         void *mmio = (void *) ap->ioaddr.cmd_addr + PDC_CTLSTAT;
223         unsigned int i;
224         u32 tmp;
225
226         for (i = 11; i > 0; i--) {
227                 tmp = readl(mmio);
228                 if (tmp & PDC_RESET)
229                         break;
230
231                 udelay(100);
232
233                 tmp |= PDC_RESET;
234                 writel(tmp, mmio);
235         }
236
237         tmp &= ~PDC_RESET;
238         writel(tmp, mmio);
239         readl(mmio);    /* flush */
240 }
241
242 static void pdc_phy_reset(struct ata_port *ap)
243 {
244         pdc_reset_port(ap);
245         sata_phy_reset(ap);
246 }
247
248 static u32 pdc_sata_scr_read (struct ata_port *ap, unsigned int sc_reg)
249 {
250         if (sc_reg > SCR_CONTROL)
251                 return 0xffffffffU;
252         return readl((void *) ap->ioaddr.scr_addr + (sc_reg * 4));
253 }
254
255
256 static void pdc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
257                                u32 val)
258 {
259         if (sc_reg > SCR_CONTROL)
260                 return;
261         writel(val, (void *) ap->ioaddr.scr_addr + (sc_reg * 4));
262 }
263
264 static void pdc_fill_sg(struct ata_queued_cmd *qc)
265 {
266         struct pdc_port_priv *pp = qc->ap->private_data;
267         unsigned int i;
268
269         VPRINTK("ENTER\n");
270
271         ata_fill_sg(qc);
272
273         i = pdc_pkt_header(&qc->tf, qc->ap->prd_dma,  qc->dev->devno, pp->pkt);
274
275         if (qc->tf.flags & ATA_TFLAG_LBA48)
276                 i = pdc_prep_lba48(&qc->tf, pp->pkt, i);
277         else
278                 i = pdc_prep_lba28(&qc->tf, pp->pkt, i);
279
280         pdc_pkt_footer(&qc->tf, pp->pkt, i);
281 }
282
283 static inline void pdc_dma_complete (struct ata_port *ap,
284                                      struct ata_queued_cmd *qc,
285                                      int have_err)
286 {
287         u8 err_bit = have_err ? ATA_ERR : 0;
288
289         /* get drive status; clear intr; complete txn */
290         ata_qc_complete(qc, ata_wait_idle(ap) | err_bit);
291 }
292
293 static void pdc_eng_timeout(struct ata_port *ap)
294 {
295         u8 drv_stat;
296         struct ata_queued_cmd *qc;
297
298         DPRINTK("ENTER\n");
299
300         qc = ata_qc_from_tag(ap, ap->active_tag);
301         if (!qc) {
302                 printk(KERN_ERR "ata%u: BUG: timeout without command\n",
303                        ap->id);
304                 goto out;
305         }
306
307         /* hack alert!  We cannot use the supplied completion
308          * function from inside the ->eh_strategy_handler() thread.
309          * libata is the only user of ->eh_strategy_handler() in
310          * any kernel, so the default scsi_done() assumes it is
311          * not being called from the SCSI EH.
312          */
313         qc->scsidone = scsi_finish_command;
314
315         switch (qc->tf.protocol) {
316         case ATA_PROT_DMA:
317                 printk(KERN_ERR "ata%u: DMA timeout\n", ap->id);
318                 ata_qc_complete(qc, ata_wait_idle(ap) | ATA_ERR);
319                 break;
320
321         case ATA_PROT_NODATA:
322                 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
323
324                 printk(KERN_ERR "ata%u: command 0x%x timeout, stat 0x%x\n",
325                        ap->id, qc->tf.command, drv_stat);
326
327                 ata_qc_complete(qc, drv_stat);
328                 break;
329
330         default:
331                 drv_stat = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
332
333                 printk(KERN_ERR "ata%u: unknown timeout, cmd 0x%x stat 0x%x\n",
334                        ap->id, qc->tf.command, drv_stat);
335
336                 ata_qc_complete(qc, drv_stat);
337                 break;
338         }
339
340 out:
341         DPRINTK("EXIT\n");
342 }
343
344 static inline unsigned int pdc_host_intr( struct ata_port *ap,
345                                           struct ata_queued_cmd *qc)
346 {
347         u8 status;
348         unsigned int handled = 0, have_err = 0;
349         u32 tmp;
350         void *mmio = (void *) ap->ioaddr.cmd_addr + PDC_GLOBAL_CTL;
351
352         tmp = readl(mmio);
353         if (tmp & PDC_ERR_MASK) {
354                 have_err = 1;
355                 pdc_reset_port(ap);
356         }
357
358         switch (qc->tf.protocol) {
359         case ATA_PROT_DMA:
360                 pdc_dma_complete(ap, qc, have_err);
361                 handled = 1;
362                 break;
363
364         case ATA_PROT_NODATA:   /* command completion, but no data xfer */
365                 status = ata_busy_wait(ap, ATA_BUSY | ATA_DRQ, 1000);
366                 DPRINTK("BUS_NODATA (drv_stat 0x%X)\n", status);
367                 if (have_err)
368                         status |= ATA_ERR;
369                 ata_qc_complete(qc, status);
370                 handled = 1;
371                 break;
372
373         default:
374                 ap->stats.idle_irq++;
375                 break;
376         }
377
378         return handled;
379 }
380
381 static irqreturn_t pdc_interrupt (int irq, void *dev_instance, struct pt_regs *regs)
382 {
383         struct ata_host_set *host_set = dev_instance;
384         struct ata_port *ap;
385         u32 mask = 0;
386         unsigned int i, tmp;
387         unsigned int handled = 0;
388         void *mmio_base;
389
390         VPRINTK("ENTER\n");
391
392         if (!host_set || !host_set->mmio_base) {
393                 VPRINTK("QUICK EXIT\n");
394                 return IRQ_NONE;
395         }
396
397         mmio_base = host_set->mmio_base;
398
399         /* reading should also clear interrupts */
400         mask = readl(mmio_base + PDC_INT_SEQMASK);
401
402         if (mask == 0xffffffff) {
403                 VPRINTK("QUICK EXIT 2\n");
404                 return IRQ_NONE;
405         }
406         mask &= 0xffff;         /* only 16 tags possible */
407         if (!mask) {
408                 VPRINTK("QUICK EXIT 3\n");
409                 return IRQ_NONE;
410         }
411
412         spin_lock(&host_set->lock);
413
414         for (i = 0; i < host_set->n_ports; i++) {
415                 VPRINTK("port %u\n", i);
416                 ap = host_set->ports[i];
417                 tmp = mask & (1 << (i + 1));
418                 if (tmp && ap && (!(ap->flags & ATA_FLAG_PORT_DISABLED))) {
419                         struct ata_queued_cmd *qc;
420
421                         qc = ata_qc_from_tag(ap, ap->active_tag);
422                         if (qc && (!(qc->tf.ctl & ATA_NIEN)))
423                                 handled += pdc_host_intr(ap, qc);
424                 }
425         }
426
427         spin_unlock(&host_set->lock);
428
429         VPRINTK("EXIT\n");
430
431         return IRQ_RETVAL(handled);
432 }
433
434 static void pdc_dma_setup(struct ata_queued_cmd *qc)
435 {
436         /* nothing for now.  later, we will call standard
437          * code in libata-core for ATAPI here */
438 }
439
440 static void pdc_dma_start(struct ata_queued_cmd *qc)
441 {
442         struct ata_port *ap = qc->ap;
443         struct pdc_port_priv *pp = ap->private_data;
444         unsigned int port_no = ap->port_no;
445         u8 seq = (u8) (port_no + 1);
446
447         VPRINTK("ENTER, ap %p\n", ap);
448
449         writel(0x00000001, ap->host_set->mmio_base + (seq * 4));
450         readl(ap->host_set->mmio_base + (seq * 4));     /* flush */
451
452         pp->pkt[2] = seq;
453         wmb();                  /* flush PRD, pkt writes */
454         writel(pp->pkt_dma, (void *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT);
455         readl((void *) ap->ioaddr.cmd_addr + PDC_PKT_SUBMIT); /* flush */
456 }
457
458 static void pdc_tf_load_mmio(struct ata_port *ap, struct ata_taskfile *tf)
459 {
460         if (tf->protocol != ATA_PROT_DMA)
461                 ata_tf_load_mmio(ap, tf);
462 }
463
464
465 static void pdc_exec_command_mmio(struct ata_port *ap, struct ata_taskfile *tf)
466 {
467         if (tf->protocol != ATA_PROT_DMA)
468                 ata_exec_command_mmio(ap, tf);
469 }
470
471
472 static void pdc_sata_setup_port(struct ata_ioports *port, unsigned long base)
473 {
474         port->cmd_addr          = base;
475         port->data_addr         = base;
476         port->feature_addr      =
477         port->error_addr        = base + 0x4;
478         port->nsect_addr        = base + 0x8;
479         port->lbal_addr         = base + 0xc;
480         port->lbam_addr         = base + 0x10;
481         port->lbah_addr         = base + 0x14;
482         port->device_addr       = base + 0x18;
483         port->command_addr      =
484         port->status_addr       = base + 0x1c;
485         port->altstatus_addr    =
486         port->ctl_addr          = base + 0x38;
487 }
488
489
490 static void pdc_host_init(unsigned int chip_id, struct ata_probe_ent *pe)
491 {
492         void *mmio = pe->mmio_base;
493         u32 tmp;
494
495         /*
496          * Except for the hotplug stuff, this is voodoo from the
497          * Promise driver.  Label this entire section
498          * "TODO: figure out why we do this"
499          */
500
501         /* change FIFO_SHD to 8 dwords, enable BMR_BURST */
502         tmp = readl(mmio + PDC_FLASH_CTL);
503         tmp |= 0x12000; /* bit 16 (fifo 8 dw) and 13 (bmr burst?) */
504         writel(tmp, mmio + PDC_FLASH_CTL);
505
506         /* clear plug/unplug flags for all ports */
507         tmp = readl(mmio + PDC_SATA_PLUG_CSR);
508         writel(tmp | 0xff, mmio + PDC_SATA_PLUG_CSR);
509
510         /* mask plug/unplug ints */
511         tmp = readl(mmio + PDC_SATA_PLUG_CSR);
512         writel(tmp | 0xff0000, mmio + PDC_SATA_PLUG_CSR);
513
514         /* reduce TBG clock to 133 Mhz. */
515         tmp = readl(mmio + PDC_TBG_MODE);
516         tmp &= ~0x30000; /* clear bit 17, 16*/
517         tmp |= 0x10000;  /* set bit 17:16 = 0:1 */
518         writel(tmp, mmio + PDC_TBG_MODE);
519
520         readl(mmio + PDC_TBG_MODE);     /* flush */
521         set_current_state(TASK_UNINTERRUPTIBLE);
522         schedule_timeout(msecs_to_jiffies(10) + 1);
523
524         /* adjust slew rate control register. */
525         tmp = readl(mmio + PDC_SLEW_CTL);
526         tmp &= 0xFFFFF03F; /* clear bit 11 ~ 6 */
527         tmp  |= 0x00000900; /* set bit 11-9 = 100b , bit 8-6 = 100 */
528         writel(tmp, mmio + PDC_SLEW_CTL);
529 }
530
531 static int pdc_sata_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
532 {
533         static int printed_version;
534         struct ata_probe_ent *probe_ent = NULL;
535         unsigned long base;
536         void *mmio_base;
537         unsigned int board_idx = (unsigned int) ent->driver_data;
538         int rc;
539
540         if (!printed_version++)
541                 printk(KERN_DEBUG DRV_NAME " version " DRV_VERSION "\n");
542
543         /*
544          * If this driver happens to only be useful on Apple's K2, then
545          * we should check that here as it has a normal Serverworks ID
546          */
547         rc = pci_enable_device(pdev);
548         if (rc)
549                 return rc;
550
551         rc = pci_request_regions(pdev, DRV_NAME);
552         if (rc)
553                 goto err_out;
554
555         rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
556         if (rc)
557                 goto err_out_regions;
558         rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
559         if (rc)
560                 goto err_out_regions;
561
562         probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
563         if (probe_ent == NULL) {
564                 rc = -ENOMEM;
565                 goto err_out_regions;
566         }
567
568         memset(probe_ent, 0, sizeof(*probe_ent));
569         probe_ent->pdev = pdev;
570         INIT_LIST_HEAD(&probe_ent->node);
571
572         mmio_base = ioremap(pci_resource_start(pdev, 3),
573                             pci_resource_len(pdev, 3));
574         if (mmio_base == NULL) {
575                 rc = -ENOMEM;
576                 goto err_out_free_ent;
577         }
578         base = (unsigned long) mmio_base;
579
580         probe_ent->sht          = pdc_port_info[board_idx].sht;
581         probe_ent->host_flags   = pdc_port_info[board_idx].host_flags;
582         probe_ent->pio_mask     = pdc_port_info[board_idx].pio_mask;
583         probe_ent->udma_mask    = pdc_port_info[board_idx].udma_mask;
584         probe_ent->port_ops     = pdc_port_info[board_idx].port_ops;
585
586         probe_ent->irq = pdev->irq;
587         probe_ent->irq_flags = SA_SHIRQ;
588         probe_ent->mmio_base = mmio_base;
589
590         pdc_sata_setup_port(&probe_ent->port[0], base + 0x200);
591         pdc_sata_setup_port(&probe_ent->port[1], base + 0x280);
592
593         probe_ent->port[0].scr_addr = base + 0x400;
594         probe_ent->port[1].scr_addr = base + 0x500;
595
596         /* notice 4-port boards */
597         switch (board_idx) {
598         case board_20319:
599                 probe_ent->n_ports = 4;
600
601                 pdc_sata_setup_port(&probe_ent->port[2], base + 0x300);
602                 pdc_sata_setup_port(&probe_ent->port[3], base + 0x380);
603
604                 probe_ent->port[2].scr_addr = base + 0x600;
605                 probe_ent->port[3].scr_addr = base + 0x700;
606                 break;
607         case board_2037x:
608                 probe_ent->n_ports = 2;
609                 break;
610         default:
611                 BUG();
612                 break;
613         }
614
615         pci_set_master(pdev);
616
617         /* initialize adapter */
618         pdc_host_init(board_idx, probe_ent);
619
620         /* FIXME: check ata_device_add return value */
621         ata_device_add(probe_ent);
622         kfree(probe_ent);
623
624         return 0;
625
626 err_out_free_ent:
627         kfree(probe_ent);
628 err_out_regions:
629         pci_release_regions(pdev);
630 err_out:
631         pci_disable_device(pdev);
632         return rc;
633 }
634
635
636 static int __init pdc_sata_init(void)
637 {
638         return pci_module_init(&pdc_sata_pci_driver);
639 }
640
641
642 static void __exit pdc_sata_exit(void)
643 {
644         pci_unregister_driver(&pdc_sata_pci_driver);
645 }
646
647
648 MODULE_AUTHOR("Jeff Garzik");
649 MODULE_DESCRIPTION("Promise SATA TX2/TX4 low-level driver");
650 MODULE_LICENSE("GPL");
651 MODULE_DEVICE_TABLE(pci, pdc_sata_pci_tbl);
652
653 module_init(pdc_sata_init);
654 module_exit(pdc_sata_exit);