]> err.no Git - linux-2.6/blob - drivers/scsi/sata_nv.c
Merge branch 'upstream-fixes' into upstream
[linux-2.6] / drivers / scsi / sata_nv.c
1 /*
2  *  sata_nv.c - NVIDIA nForce SATA
3  *
4  *  Copyright 2004 NVIDIA Corp.  All rights reserved.
5  *  Copyright 2004 Andrew Chew
6  *
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2, or (at your option)
11  *  any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; see the file COPYING.  If not, write to
20  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  *
23  *  libata documentation is available via 'make {ps|pdf}docs',
24  *  as Documentation/DocBook/libata.*
25  *
26  *  No hardware documentation available outside of NVIDIA.
27  *  This driver programs the NVIDIA SATA controller in a similar
28  *  fashion as with other PCI IDE BMDMA controllers, with a few
29  *  NV-specific details such as register offsets, SATA phy location,
30  *  hotplug info, etc.
31  *
32  */
33
34 #include <linux/config.h>
35 #include <linux/kernel.h>
36 #include <linux/module.h>
37 #include <linux/pci.h>
38 #include <linux/init.h>
39 #include <linux/blkdev.h>
40 #include <linux/delay.h>
41 #include <linux/interrupt.h>
42 #include <linux/device.h>
43 #include <scsi/scsi_host.h>
44 #include <linux/libata.h>
45
46 #define DRV_NAME                        "sata_nv"
47 #define DRV_VERSION                     "0.9"
48
49 enum {
50         NV_PORTS                        = 2,
51         NV_PIO_MASK                     = 0x1f,
52         NV_MWDMA_MASK                   = 0x07,
53         NV_UDMA_MASK                    = 0x7f,
54         NV_PORT0_SCR_REG_OFFSET         = 0x00,
55         NV_PORT1_SCR_REG_OFFSET         = 0x40,
56
57         NV_INT_STATUS                   = 0x10,
58         NV_INT_STATUS_CK804             = 0x440,
59         NV_INT_STATUS_PDEV_INT          = 0x01,
60         NV_INT_STATUS_PDEV_PM           = 0x02,
61         NV_INT_STATUS_PDEV_ADDED        = 0x04,
62         NV_INT_STATUS_PDEV_REMOVED      = 0x08,
63         NV_INT_STATUS_SDEV_INT          = 0x10,
64         NV_INT_STATUS_SDEV_PM           = 0x20,
65         NV_INT_STATUS_SDEV_ADDED        = 0x40,
66         NV_INT_STATUS_SDEV_REMOVED      = 0x80,
67         NV_INT_STATUS_PDEV_HOTPLUG      = (NV_INT_STATUS_PDEV_ADDED |
68                                            NV_INT_STATUS_PDEV_REMOVED),
69         NV_INT_STATUS_SDEV_HOTPLUG      = (NV_INT_STATUS_SDEV_ADDED |
70                                            NV_INT_STATUS_SDEV_REMOVED),
71         NV_INT_STATUS_HOTPLUG           = (NV_INT_STATUS_PDEV_HOTPLUG |
72                                            NV_INT_STATUS_SDEV_HOTPLUG),
73
74         NV_INT_ENABLE                   = 0x11,
75         NV_INT_ENABLE_CK804             = 0x441,
76         NV_INT_ENABLE_PDEV_MASK         = 0x01,
77         NV_INT_ENABLE_PDEV_PM           = 0x02,
78         NV_INT_ENABLE_PDEV_ADDED        = 0x04,
79         NV_INT_ENABLE_PDEV_REMOVED      = 0x08,
80         NV_INT_ENABLE_SDEV_MASK         = 0x10,
81         NV_INT_ENABLE_SDEV_PM           = 0x20,
82         NV_INT_ENABLE_SDEV_ADDED        = 0x40,
83         NV_INT_ENABLE_SDEV_REMOVED      = 0x80,
84         NV_INT_ENABLE_PDEV_HOTPLUG      = (NV_INT_ENABLE_PDEV_ADDED |
85                                            NV_INT_ENABLE_PDEV_REMOVED),
86         NV_INT_ENABLE_SDEV_HOTPLUG      = (NV_INT_ENABLE_SDEV_ADDED |
87                                            NV_INT_ENABLE_SDEV_REMOVED),
88         NV_INT_ENABLE_HOTPLUG           = (NV_INT_ENABLE_PDEV_HOTPLUG |
89                                            NV_INT_ENABLE_SDEV_HOTPLUG),
90
91         NV_INT_CONFIG                   = 0x12,
92         NV_INT_CONFIG_METHD             = 0x01, // 0 = INT, 1 = SMI
93
94         // For PCI config register 20
95         NV_MCP_SATA_CFG_20              = 0x50,
96         NV_MCP_SATA_CFG_20_SATA_SPACE_EN = 0x04,
97 };
98
99 static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
100 static irqreturn_t nv_interrupt (int irq, void *dev_instance,
101                                  struct pt_regs *regs);
102 static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg);
103 static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
104 static void nv_host_stop (struct ata_host_set *host_set);
105 static void nv_enable_hotplug(struct ata_probe_ent *probe_ent);
106 static void nv_disable_hotplug(struct ata_host_set *host_set);
107 static int nv_check_hotplug(struct ata_host_set *host_set);
108 static void nv_enable_hotplug_ck804(struct ata_probe_ent *probe_ent);
109 static void nv_disable_hotplug_ck804(struct ata_host_set *host_set);
110 static int nv_check_hotplug_ck804(struct ata_host_set *host_set);
111
112 enum nv_host_type
113 {
114         GENERIC,
115         NFORCE2,
116         NFORCE3,
117         CK804
118 };
119
120 static const struct pci_device_id nv_pci_tbl[] = {
121         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_SATA,
122                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE2 },
123         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA,
124                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
125         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA2,
126                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
127         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA,
128                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
129         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA2,
130                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
131         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA,
132                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
133         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA2,
134                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
135         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA,
136                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
137         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA2,
138                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
139         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA,
140                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
141         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA2,
142                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
143         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA,
144                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
145         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA2,
146                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
147         { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA3,
148                 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
149         { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
150                 PCI_ANY_ID, PCI_ANY_ID,
151                 PCI_CLASS_STORAGE_IDE<<8, 0xffff00, GENERIC },
152         { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
153                 PCI_ANY_ID, PCI_ANY_ID,
154                 PCI_CLASS_STORAGE_RAID<<8, 0xffff00, GENERIC },
155         { 0, } /* terminate list */
156 };
157
158 struct nv_host_desc
159 {
160         enum nv_host_type       host_type;
161         void                    (*enable_hotplug)(struct ata_probe_ent *probe_ent);
162         void                    (*disable_hotplug)(struct ata_host_set *host_set);
163         int                     (*check_hotplug)(struct ata_host_set *host_set);
164
165 };
166 static struct nv_host_desc nv_device_tbl[] = {
167         {
168                 .host_type      = GENERIC,
169                 .enable_hotplug = NULL,
170                 .disable_hotplug= NULL,
171                 .check_hotplug  = NULL,
172         },
173         {
174                 .host_type      = NFORCE2,
175                 .enable_hotplug = nv_enable_hotplug,
176                 .disable_hotplug= nv_disable_hotplug,
177                 .check_hotplug  = nv_check_hotplug,
178         },
179         {
180                 .host_type      = NFORCE3,
181                 .enable_hotplug = nv_enable_hotplug,
182                 .disable_hotplug= nv_disable_hotplug,
183                 .check_hotplug  = nv_check_hotplug,
184         },
185         {       .host_type      = CK804,
186                 .enable_hotplug = nv_enable_hotplug_ck804,
187                 .disable_hotplug= nv_disable_hotplug_ck804,
188                 .check_hotplug  = nv_check_hotplug_ck804,
189         },
190 };
191
192 struct nv_host
193 {
194         struct nv_host_desc     *host_desc;
195         unsigned long           host_flags;
196 };
197
198 static struct pci_driver nv_pci_driver = {
199         .name                   = DRV_NAME,
200         .id_table               = nv_pci_tbl,
201         .probe                  = nv_init_one,
202         .remove                 = ata_pci_remove_one,
203 };
204
205 static struct scsi_host_template nv_sht = {
206         .module                 = THIS_MODULE,
207         .name                   = DRV_NAME,
208         .ioctl                  = ata_scsi_ioctl,
209         .queuecommand           = ata_scsi_queuecmd,
210         .can_queue              = ATA_DEF_QUEUE,
211         .this_id                = ATA_SHT_THIS_ID,
212         .sg_tablesize           = LIBATA_MAX_PRD,
213         .cmd_per_lun            = ATA_SHT_CMD_PER_LUN,
214         .emulated               = ATA_SHT_EMULATED,
215         .use_clustering         = ATA_SHT_USE_CLUSTERING,
216         .proc_name              = DRV_NAME,
217         .dma_boundary           = ATA_DMA_BOUNDARY,
218         .slave_configure        = ata_scsi_slave_config,
219         .bios_param             = ata_std_bios_param,
220 };
221
222 static const struct ata_port_operations nv_ops = {
223         .port_disable           = ata_port_disable,
224         .tf_load                = ata_tf_load,
225         .tf_read                = ata_tf_read,
226         .exec_command           = ata_exec_command,
227         .check_status           = ata_check_status,
228         .dev_select             = ata_std_dev_select,
229         .phy_reset              = sata_phy_reset,
230         .bmdma_setup            = ata_bmdma_setup,
231         .bmdma_start            = ata_bmdma_start,
232         .bmdma_stop             = ata_bmdma_stop,
233         .bmdma_status           = ata_bmdma_status,
234         .qc_prep                = ata_qc_prep,
235         .qc_issue               = ata_qc_issue_prot,
236         .eng_timeout            = ata_eng_timeout,
237         .data_xfer              = ata_pio_data_xfer,
238         .irq_handler            = nv_interrupt,
239         .irq_clear              = ata_bmdma_irq_clear,
240         .scr_read               = nv_scr_read,
241         .scr_write              = nv_scr_write,
242         .port_start             = ata_port_start,
243         .port_stop              = ata_port_stop,
244         .host_stop              = nv_host_stop,
245 };
246
247 /* FIXME: The hardware provides the necessary SATA PHY controls
248  * to support ATA_FLAG_SATA_RESET.  However, it is currently
249  * necessary to disable that flag, to solve misdetection problems.
250  * See http://bugme.osdl.org/show_bug.cgi?id=3352 for more info.
251  *
252  * This problem really needs to be investigated further.  But in the
253  * meantime, we avoid ATA_FLAG_SATA_RESET to get people working.
254  */
255 static struct ata_port_info nv_port_info = {
256         .sht            = &nv_sht,
257         .host_flags     = ATA_FLAG_SATA |
258                           /* ATA_FLAG_SATA_RESET | */
259                           ATA_FLAG_SRST |
260                           ATA_FLAG_NO_LEGACY,
261         .pio_mask       = NV_PIO_MASK,
262         .mwdma_mask     = NV_MWDMA_MASK,
263         .udma_mask      = NV_UDMA_MASK,
264         .port_ops       = &nv_ops,
265 };
266
267 MODULE_AUTHOR("NVIDIA");
268 MODULE_DESCRIPTION("low-level driver for NVIDIA nForce SATA controller");
269 MODULE_LICENSE("GPL");
270 MODULE_DEVICE_TABLE(pci, nv_pci_tbl);
271 MODULE_VERSION(DRV_VERSION);
272
273 static irqreturn_t nv_interrupt (int irq, void *dev_instance,
274                                  struct pt_regs *regs)
275 {
276         struct ata_host_set *host_set = dev_instance;
277         struct nv_host *host = host_set->private_data;
278         unsigned int i;
279         unsigned int handled = 0;
280         unsigned long flags;
281
282         spin_lock_irqsave(&host_set->lock, flags);
283
284         for (i = 0; i < host_set->n_ports; i++) {
285                 struct ata_port *ap;
286
287                 ap = host_set->ports[i];
288                 if (ap &&
289                     !(ap->flags & ATA_FLAG_DISABLED)) {
290                         struct ata_queued_cmd *qc;
291
292                         qc = ata_qc_from_tag(ap, ap->active_tag);
293                         if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
294                                 handled += ata_host_intr(ap, qc);
295                         else
296                                 // No request pending?  Clear interrupt status
297                                 // anyway, in case there's one pending.
298                                 ap->ops->check_status(ap);
299                 }
300
301         }
302
303         if (host->host_desc->check_hotplug)
304                 handled += host->host_desc->check_hotplug(host_set);
305
306         spin_unlock_irqrestore(&host_set->lock, flags);
307
308         return IRQ_RETVAL(handled);
309 }
310
311 static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg)
312 {
313         if (sc_reg > SCR_CONTROL)
314                 return 0xffffffffU;
315
316         return ioread32((void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
317 }
318
319 static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
320 {
321         if (sc_reg > SCR_CONTROL)
322                 return;
323
324         iowrite32(val, (void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
325 }
326
327 static void nv_host_stop (struct ata_host_set *host_set)
328 {
329         struct nv_host *host = host_set->private_data;
330
331         // Disable hotplug event interrupts.
332         if (host->host_desc->disable_hotplug)
333                 host->host_desc->disable_hotplug(host_set);
334
335         kfree(host);
336
337         ata_pci_host_stop(host_set);
338 }
339
340 static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
341 {
342         static int printed_version = 0;
343         struct nv_host *host;
344         struct ata_port_info *ppi;
345         struct ata_probe_ent *probe_ent;
346         int pci_dev_busy = 0;
347         int rc;
348         u32 bar;
349         unsigned long base;
350
351         // Make sure this is a SATA controller by counting the number of bars
352         // (NVIDIA SATA controllers will always have six bars).  Otherwise,
353         // it's an IDE controller and we ignore it.
354         for (bar=0; bar<6; bar++)
355                 if (pci_resource_start(pdev, bar) == 0)
356                         return -ENODEV;
357
358         if (!printed_version++)
359                 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
360
361         rc = pci_enable_device(pdev);
362         if (rc)
363                 goto err_out;
364
365         rc = pci_request_regions(pdev, DRV_NAME);
366         if (rc) {
367                 pci_dev_busy = 1;
368                 goto err_out_disable;
369         }
370
371         rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
372         if (rc)
373                 goto err_out_regions;
374         rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
375         if (rc)
376                 goto err_out_regions;
377
378         rc = -ENOMEM;
379
380         ppi = &nv_port_info;
381         probe_ent = ata_pci_init_native_mode(pdev, &ppi, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
382         if (!probe_ent)
383                 goto err_out_regions;
384
385         host = kmalloc(sizeof(struct nv_host), GFP_KERNEL);
386         if (!host)
387                 goto err_out_free_ent;
388
389         memset(host, 0, sizeof(struct nv_host));
390         host->host_desc = &nv_device_tbl[ent->driver_data];
391
392         probe_ent->private_data = host;
393
394         probe_ent->mmio_base = pci_iomap(pdev, 5, 0);
395         if (!probe_ent->mmio_base) {
396                 rc = -EIO;
397                 goto err_out_free_host;
398         }
399
400         base = (unsigned long)probe_ent->mmio_base;
401
402         probe_ent->port[0].scr_addr = base + NV_PORT0_SCR_REG_OFFSET;
403         probe_ent->port[1].scr_addr = base + NV_PORT1_SCR_REG_OFFSET;
404
405         pci_set_master(pdev);
406
407         rc = ata_device_add(probe_ent);
408         if (rc != NV_PORTS)
409                 goto err_out_iounmap;
410
411         // Enable hotplug event interrupts.
412         if (host->host_desc->enable_hotplug)
413                 host->host_desc->enable_hotplug(probe_ent);
414
415         kfree(probe_ent);
416
417         return 0;
418
419 err_out_iounmap:
420         pci_iounmap(pdev, probe_ent->mmio_base);
421 err_out_free_host:
422         kfree(host);
423 err_out_free_ent:
424         kfree(probe_ent);
425 err_out_regions:
426         pci_release_regions(pdev);
427 err_out_disable:
428         if (!pci_dev_busy)
429                 pci_disable_device(pdev);
430 err_out:
431         return rc;
432 }
433
434 static void nv_enable_hotplug(struct ata_probe_ent *probe_ent)
435 {
436         u8 intr_mask;
437
438         outb(NV_INT_STATUS_HOTPLUG,
439                 probe_ent->port[0].scr_addr + NV_INT_STATUS);
440
441         intr_mask = inb(probe_ent->port[0].scr_addr + NV_INT_ENABLE);
442         intr_mask |= NV_INT_ENABLE_HOTPLUG;
443
444         outb(intr_mask, probe_ent->port[0].scr_addr + NV_INT_ENABLE);
445 }
446
447 static void nv_disable_hotplug(struct ata_host_set *host_set)
448 {
449         u8 intr_mask;
450
451         intr_mask = inb(host_set->ports[0]->ioaddr.scr_addr + NV_INT_ENABLE);
452
453         intr_mask &= ~(NV_INT_ENABLE_HOTPLUG);
454
455         outb(intr_mask, host_set->ports[0]->ioaddr.scr_addr + NV_INT_ENABLE);
456 }
457
458 static int nv_check_hotplug(struct ata_host_set *host_set)
459 {
460         u8 intr_status;
461
462         intr_status = inb(host_set->ports[0]->ioaddr.scr_addr + NV_INT_STATUS);
463
464         // Clear interrupt status.
465         outb(0xff, host_set->ports[0]->ioaddr.scr_addr + NV_INT_STATUS);
466
467         if (intr_status & NV_INT_STATUS_HOTPLUG) {
468                 if (intr_status & NV_INT_STATUS_PDEV_ADDED)
469                         printk(KERN_WARNING "nv_sata: "
470                                 "Primary device added\n");
471
472                 if (intr_status & NV_INT_STATUS_PDEV_REMOVED)
473                         printk(KERN_WARNING "nv_sata: "
474                                 "Primary device removed\n");
475
476                 if (intr_status & NV_INT_STATUS_SDEV_ADDED)
477                         printk(KERN_WARNING "nv_sata: "
478                                 "Secondary device added\n");
479
480                 if (intr_status & NV_INT_STATUS_SDEV_REMOVED)
481                         printk(KERN_WARNING "nv_sata: "
482                                 "Secondary device removed\n");
483
484                 return 1;
485         }
486
487         return 0;
488 }
489
490 static void nv_enable_hotplug_ck804(struct ata_probe_ent *probe_ent)
491 {
492         struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
493         u8 intr_mask;
494         u8 regval;
495
496         pci_read_config_byte(pdev, NV_MCP_SATA_CFG_20, &regval);
497         regval |= NV_MCP_SATA_CFG_20_SATA_SPACE_EN;
498         pci_write_config_byte(pdev, NV_MCP_SATA_CFG_20, regval);
499
500         writeb(NV_INT_STATUS_HOTPLUG, probe_ent->mmio_base + NV_INT_STATUS_CK804);
501
502         intr_mask = readb(probe_ent->mmio_base + NV_INT_ENABLE_CK804);
503         intr_mask |= NV_INT_ENABLE_HOTPLUG;
504
505         writeb(intr_mask, probe_ent->mmio_base + NV_INT_ENABLE_CK804);
506 }
507
508 static void nv_disable_hotplug_ck804(struct ata_host_set *host_set)
509 {
510         struct pci_dev *pdev = to_pci_dev(host_set->dev);
511         u8 intr_mask;
512         u8 regval;
513
514         intr_mask = readb(host_set->mmio_base + NV_INT_ENABLE_CK804);
515
516         intr_mask &= ~(NV_INT_ENABLE_HOTPLUG);
517
518         writeb(intr_mask, host_set->mmio_base + NV_INT_ENABLE_CK804);
519
520         pci_read_config_byte(pdev, NV_MCP_SATA_CFG_20, &regval);
521         regval &= ~NV_MCP_SATA_CFG_20_SATA_SPACE_EN;
522         pci_write_config_byte(pdev, NV_MCP_SATA_CFG_20, regval);
523 }
524
525 static int nv_check_hotplug_ck804(struct ata_host_set *host_set)
526 {
527         u8 intr_status;
528
529         intr_status = readb(host_set->mmio_base + NV_INT_STATUS_CK804);
530
531         // Clear interrupt status.
532         writeb(0xff, host_set->mmio_base + NV_INT_STATUS_CK804);
533
534         if (intr_status & NV_INT_STATUS_HOTPLUG) {
535                 if (intr_status & NV_INT_STATUS_PDEV_ADDED)
536                         printk(KERN_WARNING "nv_sata: "
537                                 "Primary device added\n");
538
539                 if (intr_status & NV_INT_STATUS_PDEV_REMOVED)
540                         printk(KERN_WARNING "nv_sata: "
541                                 "Primary device removed\n");
542
543                 if (intr_status & NV_INT_STATUS_SDEV_ADDED)
544                         printk(KERN_WARNING "nv_sata: "
545                                 "Secondary device added\n");
546
547                 if (intr_status & NV_INT_STATUS_SDEV_REMOVED)
548                         printk(KERN_WARNING "nv_sata: "
549                                 "Secondary device removed\n");
550
551                 return 1;
552         }
553
554         return 0;
555 }
556
557 static int __init nv_init(void)
558 {
559         return pci_module_init(&nv_pci_driver);
560 }
561
562 static void __exit nv_exit(void)
563 {
564         pci_unregister_driver(&nv_pci_driver);
565 }
566
567 module_init(nv_init);
568 module_exit(nv_exit);