blob: bbbb55eeb73a521d52797bf9da858fbad7040911 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sata_nv.c - NVIDIA nForce SATA
3 *
4 * Copyright 2004 NVIDIA Corp. All rights reserved.
5 * Copyright 2004 Andrew Chew
6 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
Jeff Garzikaa7e16d2005-08-29 15:12:56 -04008 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 *
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040022 *
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 *
Andrew Chewb8870302006-01-04 19:13:04 -080032 * 0.10
33 * - Fixed spurious interrupts issue seen with the Maxtor 6H500F0 500GB
34 * drive. Also made the check_hotplug() callbacks return whether there
35 * was a hotplug interrupt or not. This was not the source of the
36 * spurious interrupts, but is the right thing to do anyway.
37 *
Andy Curride7102452005-10-07 08:53:39 -070038 * 0.09
39 * - Fixed bug introduced by 0.08's MCP51 and MCP55 support.
Jeff Garzikaf36d7f2005-08-28 20:18:39 -040040 *
Daniel Drake541134c2005-07-03 13:44:39 +010041 * 0.08
42 * - Added support for MCP51 and MCP55.
43 *
44 * 0.07
45 * - Added support for RAID class code.
46 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 * 0.06
48 * - Added generic SATA support by using a pci_device_id that filters on
49 * the IDE storage class code.
50 *
51 * 0.03
52 * - Fixed a bug where the hotplug handlers for non-CK804/MCP04 were using
53 * mmio_base, which is only set for the CK804/MCP04 case.
54 *
55 * 0.02
56 * - Added support for CK804 SATA controller.
57 *
58 * 0.01
59 * - Initial revision.
60 */
61
62#include <linux/config.h>
63#include <linux/kernel.h>
64#include <linux/module.h>
65#include <linux/pci.h>
66#include <linux/init.h>
67#include <linux/blkdev.h>
68#include <linux/delay.h>
69#include <linux/interrupt.h>
Jeff Garzika9524a72005-10-30 14:39:11 -050070#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#include <scsi/scsi_host.h>
72#include <linux/libata.h>
73
74#define DRV_NAME "sata_nv"
Daniel Drake541134c2005-07-03 13:44:39 +010075#define DRV_VERSION "0.8"
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
77#define NV_PORTS 2
78#define NV_PIO_MASK 0x1f
79#define NV_MWDMA_MASK 0x07
80#define NV_UDMA_MASK 0x7f
81#define NV_PORT0_SCR_REG_OFFSET 0x00
82#define NV_PORT1_SCR_REG_OFFSET 0x40
83
84#define NV_INT_STATUS 0x10
85#define NV_INT_STATUS_CK804 0x440
86#define NV_INT_STATUS_PDEV_INT 0x01
87#define NV_INT_STATUS_PDEV_PM 0x02
88#define NV_INT_STATUS_PDEV_ADDED 0x04
89#define NV_INT_STATUS_PDEV_REMOVED 0x08
90#define NV_INT_STATUS_SDEV_INT 0x10
91#define NV_INT_STATUS_SDEV_PM 0x20
92#define NV_INT_STATUS_SDEV_ADDED 0x40
93#define NV_INT_STATUS_SDEV_REMOVED 0x80
94#define NV_INT_STATUS_PDEV_HOTPLUG (NV_INT_STATUS_PDEV_ADDED | \
95 NV_INT_STATUS_PDEV_REMOVED)
96#define NV_INT_STATUS_SDEV_HOTPLUG (NV_INT_STATUS_SDEV_ADDED | \
97 NV_INT_STATUS_SDEV_REMOVED)
98#define NV_INT_STATUS_HOTPLUG (NV_INT_STATUS_PDEV_HOTPLUG | \
99 NV_INT_STATUS_SDEV_HOTPLUG)
100
101#define NV_INT_ENABLE 0x11
102#define NV_INT_ENABLE_CK804 0x441
103#define NV_INT_ENABLE_PDEV_MASK 0x01
104#define NV_INT_ENABLE_PDEV_PM 0x02
105#define NV_INT_ENABLE_PDEV_ADDED 0x04
106#define NV_INT_ENABLE_PDEV_REMOVED 0x08
107#define NV_INT_ENABLE_SDEV_MASK 0x10
108#define NV_INT_ENABLE_SDEV_PM 0x20
109#define NV_INT_ENABLE_SDEV_ADDED 0x40
110#define NV_INT_ENABLE_SDEV_REMOVED 0x80
111#define NV_INT_ENABLE_PDEV_HOTPLUG (NV_INT_ENABLE_PDEV_ADDED | \
112 NV_INT_ENABLE_PDEV_REMOVED)
113#define NV_INT_ENABLE_SDEV_HOTPLUG (NV_INT_ENABLE_SDEV_ADDED | \
114 NV_INT_ENABLE_SDEV_REMOVED)
115#define NV_INT_ENABLE_HOTPLUG (NV_INT_ENABLE_PDEV_HOTPLUG | \
116 NV_INT_ENABLE_SDEV_HOTPLUG)
117
118#define NV_INT_CONFIG 0x12
119#define NV_INT_CONFIG_METHD 0x01 // 0 = INT, 1 = SMI
120
121// For PCI config register 20
122#define NV_MCP_SATA_CFG_20 0x50
123#define NV_MCP_SATA_CFG_20_SATA_SPACE_EN 0x04
124
125static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
126static irqreturn_t nv_interrupt (int irq, void *dev_instance,
127 struct pt_regs *regs);
128static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg);
129static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
130static void nv_host_stop (struct ata_host_set *host_set);
131static void nv_enable_hotplug(struct ata_probe_ent *probe_ent);
132static void nv_disable_hotplug(struct ata_host_set *host_set);
Andrew Chewb8870302006-01-04 19:13:04 -0800133static int nv_check_hotplug(struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134static void nv_enable_hotplug_ck804(struct ata_probe_ent *probe_ent);
135static void nv_disable_hotplug_ck804(struct ata_host_set *host_set);
Andrew Chewb8870302006-01-04 19:13:04 -0800136static int nv_check_hotplug_ck804(struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138enum nv_host_type
139{
140 GENERIC,
141 NFORCE2,
142 NFORCE3,
Andy Curride7102452005-10-07 08:53:39 -0700143 CK804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144};
145
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500146static const struct pci_device_id nv_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_SATA,
148 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE2 },
149 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA,
150 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
151 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA2,
152 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
153 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA,
154 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
155 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA2,
156 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
157 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA,
158 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
159 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA2,
160 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
Daniel Drake541134c2005-07-03 13:44:39 +0100161 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA,
Andy Curride7102452005-10-07 08:53:39 -0700162 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100163 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA2,
Andy Curride7102452005-10-07 08:53:39 -0700164 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100165 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA,
Andy Curride7102452005-10-07 08:53:39 -0700166 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Andy Curride86ee662005-09-19 06:17:52 -0700167 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA2,
Andy Curride7102452005-10-07 08:53:39 -0700168 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
170 PCI_ANY_ID, PCI_ANY_ID,
171 PCI_CLASS_STORAGE_IDE<<8, 0xffff00, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100172 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
173 PCI_ANY_ID, PCI_ANY_ID,
174 PCI_CLASS_STORAGE_RAID<<8, 0xffff00, GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 { 0, } /* terminate list */
176};
177
178#define NV_HOST_FLAGS_SCR_MMIO 0x00000001
179
180struct nv_host_desc
181{
182 enum nv_host_type host_type;
183 void (*enable_hotplug)(struct ata_probe_ent *probe_ent);
184 void (*disable_hotplug)(struct ata_host_set *host_set);
Andrew Chewb8870302006-01-04 19:13:04 -0800185 int (*check_hotplug)(struct ata_host_set *host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187};
188static struct nv_host_desc nv_device_tbl[] = {
189 {
190 .host_type = GENERIC,
191 .enable_hotplug = NULL,
192 .disable_hotplug= NULL,
193 .check_hotplug = NULL,
194 },
195 {
196 .host_type = NFORCE2,
197 .enable_hotplug = nv_enable_hotplug,
198 .disable_hotplug= nv_disable_hotplug,
199 .check_hotplug = nv_check_hotplug,
200 },
201 {
202 .host_type = NFORCE3,
203 .enable_hotplug = nv_enable_hotplug,
204 .disable_hotplug= nv_disable_hotplug,
205 .check_hotplug = nv_check_hotplug,
206 },
207 { .host_type = CK804,
208 .enable_hotplug = nv_enable_hotplug_ck804,
209 .disable_hotplug= nv_disable_hotplug_ck804,
210 .check_hotplug = nv_check_hotplug_ck804,
211 },
212};
213
214struct nv_host
215{
216 struct nv_host_desc *host_desc;
217 unsigned long host_flags;
218};
219
220static struct pci_driver nv_pci_driver = {
221 .name = DRV_NAME,
222 .id_table = nv_pci_tbl,
223 .probe = nv_init_one,
224 .remove = ata_pci_remove_one,
225};
226
Jeff Garzik193515d2005-11-07 00:59:37 -0500227static struct scsi_host_template nv_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 .module = THIS_MODULE,
229 .name = DRV_NAME,
230 .ioctl = ata_scsi_ioctl,
231 .queuecommand = ata_scsi_queuecmd,
232 .eh_strategy_handler = ata_scsi_error,
233 .can_queue = ATA_DEF_QUEUE,
234 .this_id = ATA_SHT_THIS_ID,
235 .sg_tablesize = LIBATA_MAX_PRD,
236 .max_sectors = ATA_MAX_SECTORS,
237 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
238 .emulated = ATA_SHT_EMULATED,
239 .use_clustering = ATA_SHT_USE_CLUSTERING,
240 .proc_name = DRV_NAME,
241 .dma_boundary = ATA_DMA_BOUNDARY,
242 .slave_configure = ata_scsi_slave_config,
243 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244};
245
Jeff Garzik057ace52005-10-22 14:27:05 -0400246static const struct ata_port_operations nv_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 .port_disable = ata_port_disable,
248 .tf_load = ata_tf_load,
249 .tf_read = ata_tf_read,
250 .exec_command = ata_exec_command,
251 .check_status = ata_check_status,
252 .dev_select = ata_std_dev_select,
253 .phy_reset = sata_phy_reset,
254 .bmdma_setup = ata_bmdma_setup,
255 .bmdma_start = ata_bmdma_start,
256 .bmdma_stop = ata_bmdma_stop,
257 .bmdma_status = ata_bmdma_status,
258 .qc_prep = ata_qc_prep,
259 .qc_issue = ata_qc_issue_prot,
260 .eng_timeout = ata_eng_timeout,
261 .irq_handler = nv_interrupt,
262 .irq_clear = ata_bmdma_irq_clear,
263 .scr_read = nv_scr_read,
264 .scr_write = nv_scr_write,
265 .port_start = ata_port_start,
266 .port_stop = ata_port_stop,
267 .host_stop = nv_host_stop,
268};
269
270/* FIXME: The hardware provides the necessary SATA PHY controls
271 * to support ATA_FLAG_SATA_RESET. However, it is currently
272 * necessary to disable that flag, to solve misdetection problems.
273 * See http://bugme.osdl.org/show_bug.cgi?id=3352 for more info.
274 *
275 * This problem really needs to be investigated further. But in the
276 * meantime, we avoid ATA_FLAG_SATA_RESET to get people working.
277 */
278static struct ata_port_info nv_port_info = {
279 .sht = &nv_sht,
280 .host_flags = ATA_FLAG_SATA |
281 /* ATA_FLAG_SATA_RESET | */
282 ATA_FLAG_SRST |
283 ATA_FLAG_NO_LEGACY,
284 .pio_mask = NV_PIO_MASK,
285 .mwdma_mask = NV_MWDMA_MASK,
286 .udma_mask = NV_UDMA_MASK,
287 .port_ops = &nv_ops,
288};
289
290MODULE_AUTHOR("NVIDIA");
291MODULE_DESCRIPTION("low-level driver for NVIDIA nForce SATA controller");
292MODULE_LICENSE("GPL");
293MODULE_DEVICE_TABLE(pci, nv_pci_tbl);
294MODULE_VERSION(DRV_VERSION);
295
296static irqreturn_t nv_interrupt (int irq, void *dev_instance,
297 struct pt_regs *regs)
298{
299 struct ata_host_set *host_set = dev_instance;
300 struct nv_host *host = host_set->private_data;
301 unsigned int i;
302 unsigned int handled = 0;
303 unsigned long flags;
304
305 spin_lock_irqsave(&host_set->lock, flags);
306
307 for (i = 0; i < host_set->n_ports; i++) {
308 struct ata_port *ap;
309
310 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +0900311 if (ap &&
312 !(ap->flags & (ATA_FLAG_PORT_DISABLED | ATA_FLAG_NOINTR))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct ata_queued_cmd *qc;
314
315 qc = ata_qc_from_tag(ap, ap->active_tag);
316 if (qc && (!(qc->tf.ctl & ATA_NIEN)))
317 handled += ata_host_intr(ap, qc);
Andrew Chewb8870302006-01-04 19:13:04 -0800318 else
319 // No request pending? Clear interrupt status
320 // anyway, in case there's one pending.
321 ap->ops->check_status(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323
324 }
325
326 if (host->host_desc->check_hotplug)
Andrew Chewb8870302006-01-04 19:13:04 -0800327 handled += host->host_desc->check_hotplug(host_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 spin_unlock_irqrestore(&host_set->lock, flags);
330
331 return IRQ_RETVAL(handled);
332}
333
334static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg)
335{
336 struct ata_host_set *host_set = ap->host_set;
337 struct nv_host *host = host_set->private_data;
338
339 if (sc_reg > SCR_CONTROL)
340 return 0xffffffffU;
341
342 if (host->host_flags & NV_HOST_FLAGS_SCR_MMIO)
Al Viro9ee0c0a2005-10-21 06:46:02 +0100343 return readl((void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 else
345 return inl(ap->ioaddr.scr_addr + (sc_reg * 4));
346}
347
348static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
349{
350 struct ata_host_set *host_set = ap->host_set;
351 struct nv_host *host = host_set->private_data;
352
353 if (sc_reg > SCR_CONTROL)
354 return;
355
356 if (host->host_flags & NV_HOST_FLAGS_SCR_MMIO)
Al Viro9ee0c0a2005-10-21 06:46:02 +0100357 writel(val, (void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 else
359 outl(val, ap->ioaddr.scr_addr + (sc_reg * 4));
360}
361
362static void nv_host_stop (struct ata_host_set *host_set)
363{
364 struct nv_host *host = host_set->private_data;
Jeff Garzik374b1872005-08-30 05:42:52 -0400365 struct pci_dev *pdev = to_pci_dev(host_set->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 // Disable hotplug event interrupts.
368 if (host->host_desc->disable_hotplug)
369 host->host_desc->disable_hotplug(host_set);
370
371 kfree(host);
Jeff Garzikaa8f0dc2005-05-26 21:54:27 -0400372
Jeff Garzik374b1872005-08-30 05:42:52 -0400373 if (host_set->mmio_base)
374 pci_iounmap(pdev, host_set->mmio_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
376
377static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
378{
379 static int printed_version = 0;
380 struct nv_host *host;
381 struct ata_port_info *ppi;
382 struct ata_probe_ent *probe_ent;
383 int pci_dev_busy = 0;
384 int rc;
385 u32 bar;
386
387 // Make sure this is a SATA controller by counting the number of bars
388 // (NVIDIA SATA controllers will always have six bars). Otherwise,
389 // it's an IDE controller and we ignore it.
390 for (bar=0; bar<6; bar++)
391 if (pci_resource_start(pdev, bar) == 0)
392 return -ENODEV;
393
394 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500395 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
397 rc = pci_enable_device(pdev);
398 if (rc)
399 goto err_out;
400
401 rc = pci_request_regions(pdev, DRV_NAME);
402 if (rc) {
403 pci_dev_busy = 1;
404 goto err_out_disable;
405 }
406
407 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
408 if (rc)
409 goto err_out_regions;
410 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
411 if (rc)
412 goto err_out_regions;
413
414 rc = -ENOMEM;
415
416 ppi = &nv_port_info;
Alan Cox47a86592005-10-04 08:09:19 -0400417 probe_ent = ata_pci_init_native_mode(pdev, &ppi, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (!probe_ent)
419 goto err_out_regions;
420
421 host = kmalloc(sizeof(struct nv_host), GFP_KERNEL);
422 if (!host)
423 goto err_out_free_ent;
424
425 memset(host, 0, sizeof(struct nv_host));
426 host->host_desc = &nv_device_tbl[ent->driver_data];
427
428 probe_ent->private_data = host;
429
430 if (pci_resource_flags(pdev, 5) & IORESOURCE_MEM)
431 host->host_flags |= NV_HOST_FLAGS_SCR_MMIO;
432
433 if (host->host_flags & NV_HOST_FLAGS_SCR_MMIO) {
434 unsigned long base;
435
Jeff Garzik374b1872005-08-30 05:42:52 -0400436 probe_ent->mmio_base = pci_iomap(pdev, 5, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (probe_ent->mmio_base == NULL) {
438 rc = -EIO;
439 goto err_out_free_host;
440 }
441
442 base = (unsigned long)probe_ent->mmio_base;
443
444 probe_ent->port[0].scr_addr =
445 base + NV_PORT0_SCR_REG_OFFSET;
446 probe_ent->port[1].scr_addr =
447 base + NV_PORT1_SCR_REG_OFFSET;
448 } else {
449
450 probe_ent->port[0].scr_addr =
451 pci_resource_start(pdev, 5) | NV_PORT0_SCR_REG_OFFSET;
452 probe_ent->port[1].scr_addr =
453 pci_resource_start(pdev, 5) | NV_PORT1_SCR_REG_OFFSET;
454 }
455
456 pci_set_master(pdev);
457
458 rc = ata_device_add(probe_ent);
459 if (rc != NV_PORTS)
460 goto err_out_iounmap;
461
462 // Enable hotplug event interrupts.
463 if (host->host_desc->enable_hotplug)
464 host->host_desc->enable_hotplug(probe_ent);
465
466 kfree(probe_ent);
467
468 return 0;
469
470err_out_iounmap:
471 if (host->host_flags & NV_HOST_FLAGS_SCR_MMIO)
Jeff Garzik374b1872005-08-30 05:42:52 -0400472 pci_iounmap(pdev, probe_ent->mmio_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473err_out_free_host:
474 kfree(host);
475err_out_free_ent:
476 kfree(probe_ent);
477err_out_regions:
478 pci_release_regions(pdev);
479err_out_disable:
480 if (!pci_dev_busy)
481 pci_disable_device(pdev);
482err_out:
483 return rc;
484}
485
486static void nv_enable_hotplug(struct ata_probe_ent *probe_ent)
487{
488 u8 intr_mask;
489
490 outb(NV_INT_STATUS_HOTPLUG,
491 probe_ent->port[0].scr_addr + NV_INT_STATUS);
492
493 intr_mask = inb(probe_ent->port[0].scr_addr + NV_INT_ENABLE);
494 intr_mask |= NV_INT_ENABLE_HOTPLUG;
495
496 outb(intr_mask, probe_ent->port[0].scr_addr + NV_INT_ENABLE);
497}
498
499static void nv_disable_hotplug(struct ata_host_set *host_set)
500{
501 u8 intr_mask;
502
503 intr_mask = inb(host_set->ports[0]->ioaddr.scr_addr + NV_INT_ENABLE);
504
505 intr_mask &= ~(NV_INT_ENABLE_HOTPLUG);
506
507 outb(intr_mask, host_set->ports[0]->ioaddr.scr_addr + NV_INT_ENABLE);
508}
509
Andrew Chewb8870302006-01-04 19:13:04 -0800510static int nv_check_hotplug(struct ata_host_set *host_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 u8 intr_status;
513
514 intr_status = inb(host_set->ports[0]->ioaddr.scr_addr + NV_INT_STATUS);
515
516 // Clear interrupt status.
517 outb(0xff, host_set->ports[0]->ioaddr.scr_addr + NV_INT_STATUS);
518
519 if (intr_status & NV_INT_STATUS_HOTPLUG) {
520 if (intr_status & NV_INT_STATUS_PDEV_ADDED)
521 printk(KERN_WARNING "nv_sata: "
522 "Primary device added\n");
523
524 if (intr_status & NV_INT_STATUS_PDEV_REMOVED)
525 printk(KERN_WARNING "nv_sata: "
526 "Primary device removed\n");
527
528 if (intr_status & NV_INT_STATUS_SDEV_ADDED)
529 printk(KERN_WARNING "nv_sata: "
530 "Secondary device added\n");
531
532 if (intr_status & NV_INT_STATUS_SDEV_REMOVED)
533 printk(KERN_WARNING "nv_sata: "
534 "Secondary device removed\n");
Andrew Chewb8870302006-01-04 19:13:04 -0800535
536 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
Andrew Chewb8870302006-01-04 19:13:04 -0800538
539 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542static void nv_enable_hotplug_ck804(struct ata_probe_ent *probe_ent)
543{
544 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
545 u8 intr_mask;
546 u8 regval;
547
548 pci_read_config_byte(pdev, NV_MCP_SATA_CFG_20, &regval);
549 regval |= NV_MCP_SATA_CFG_20_SATA_SPACE_EN;
550 pci_write_config_byte(pdev, NV_MCP_SATA_CFG_20, regval);
551
552 writeb(NV_INT_STATUS_HOTPLUG, probe_ent->mmio_base + NV_INT_STATUS_CK804);
553
554 intr_mask = readb(probe_ent->mmio_base + NV_INT_ENABLE_CK804);
555 intr_mask |= NV_INT_ENABLE_HOTPLUG;
556
557 writeb(intr_mask, probe_ent->mmio_base + NV_INT_ENABLE_CK804);
558}
559
560static void nv_disable_hotplug_ck804(struct ata_host_set *host_set)
561{
562 struct pci_dev *pdev = to_pci_dev(host_set->dev);
563 u8 intr_mask;
564 u8 regval;
565
566 intr_mask = readb(host_set->mmio_base + NV_INT_ENABLE_CK804);
567
568 intr_mask &= ~(NV_INT_ENABLE_HOTPLUG);
569
570 writeb(intr_mask, host_set->mmio_base + NV_INT_ENABLE_CK804);
571
572 pci_read_config_byte(pdev, NV_MCP_SATA_CFG_20, &regval);
573 regval &= ~NV_MCP_SATA_CFG_20_SATA_SPACE_EN;
574 pci_write_config_byte(pdev, NV_MCP_SATA_CFG_20, regval);
575}
576
Andrew Chewb8870302006-01-04 19:13:04 -0800577static int nv_check_hotplug_ck804(struct ata_host_set *host_set)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
579 u8 intr_status;
580
581 intr_status = readb(host_set->mmio_base + NV_INT_STATUS_CK804);
582
583 // Clear interrupt status.
584 writeb(0xff, host_set->mmio_base + NV_INT_STATUS_CK804);
585
586 if (intr_status & NV_INT_STATUS_HOTPLUG) {
587 if (intr_status & NV_INT_STATUS_PDEV_ADDED)
588 printk(KERN_WARNING "nv_sata: "
589 "Primary device added\n");
590
591 if (intr_status & NV_INT_STATUS_PDEV_REMOVED)
592 printk(KERN_WARNING "nv_sata: "
593 "Primary device removed\n");
594
595 if (intr_status & NV_INT_STATUS_SDEV_ADDED)
596 printk(KERN_WARNING "nv_sata: "
597 "Secondary device added\n");
598
599 if (intr_status & NV_INT_STATUS_SDEV_REMOVED)
600 printk(KERN_WARNING "nv_sata: "
601 "Secondary device removed\n");
Andrew Chewb8870302006-01-04 19:13:04 -0800602
603 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 }
Andrew Chewb8870302006-01-04 19:13:04 -0800605
606 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
609static int __init nv_init(void)
610{
611 return pci_module_init(&nv_pci_driver);
612}
613
614static void __exit nv_exit(void)
615{
616 pci_unregister_driver(&nv_pci_driver);
617}
618
619module_init(nv_init);
620module_exit(nv_exit);