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