blob: e9c4547723c83c0b6b65036a652f1a830a33bd1e [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 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 */
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>
Jeff Garzika9524a72005-10-30 14:39:11 -050042#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <scsi/scsi_host.h>
44#include <linux/libata.h>
45
46#define DRV_NAME "sata_nv"
Jeff Garzikaf643712006-04-02 20:41:36 -040047#define DRV_VERSION "0.9"
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Jeff Garzik10ad05d2006-03-22 23:50:50 -050049enum {
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,
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Jeff Garzik10ad05d2006-03-22 23:50:50 -050057 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,
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Jeff Garzik10ad05d2006-03-22 23:50:50 -050068 NV_INT_ENABLE = 0x11,
69 NV_INT_ENABLE_CK804 = 0x441,
70 NV_INT_ENABLE_PDEV_MASK = 0x01,
71 NV_INT_ENABLE_PDEV_PM = 0x02,
72 NV_INT_ENABLE_PDEV_ADDED = 0x04,
73 NV_INT_ENABLE_PDEV_REMOVED = 0x08,
74 NV_INT_ENABLE_SDEV_MASK = 0x10,
75 NV_INT_ENABLE_SDEV_PM = 0x20,
76 NV_INT_ENABLE_SDEV_ADDED = 0x40,
77 NV_INT_ENABLE_SDEV_REMOVED = 0x80,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Jeff Garzik10ad05d2006-03-22 23:50:50 -050079 NV_INT_CONFIG = 0x12,
80 NV_INT_CONFIG_METHD = 0x01, // 0 = INT, 1 = SMI
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Jeff Garzik10ad05d2006-03-22 23:50:50 -050082 // For PCI config register 20
83 NV_MCP_SATA_CFG_20 = 0x50,
84 NV_MCP_SATA_CFG_20_SATA_SPACE_EN = 0x04,
85};
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
88static irqreturn_t nv_interrupt (int irq, void *dev_instance,
89 struct pt_regs *regs);
90static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg);
91static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93enum nv_host_type
94{
95 GENERIC,
96 NFORCE2,
97 NFORCE3,
Andy Curride7102452005-10-07 08:53:39 -070098 CK804
Linus Torvalds1da177e2005-04-16 15:20:36 -070099};
100
Jeff Garzik3b7d6972005-11-10 11:04:11 -0500101static const struct pci_device_id nv_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_SATA,
103 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE2 },
104 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA,
105 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
106 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA2,
107 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
108 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA,
109 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
110 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA2,
111 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
112 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA,
113 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
114 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA2,
115 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
Daniel Drake541134c2005-07-03 13:44:39 +0100116 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA,
Andy Curride7102452005-10-07 08:53:39 -0700117 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100118 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA2,
Andy Curride7102452005-10-07 08:53:39 -0700119 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100120 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA,
Andy Curride7102452005-10-07 08:53:39 -0700121 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Andy Curride86ee662005-09-19 06:17:52 -0700122 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA2,
Andy Curride7102452005-10-07 08:53:39 -0700123 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Andrew Chew4c5c8162006-04-20 15:54:26 -0700124 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA,
125 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
126 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA2,
127 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
128 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA3,
129 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
131 PCI_ANY_ID, PCI_ANY_ID,
132 PCI_CLASS_STORAGE_IDE<<8, 0xffff00, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100133 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
134 PCI_ANY_ID, PCI_ANY_ID,
135 PCI_CLASS_STORAGE_RAID<<8, 0xffff00, GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 { 0, } /* terminate list */
137};
138
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static struct pci_driver nv_pci_driver = {
140 .name = DRV_NAME,
141 .id_table = nv_pci_tbl,
142 .probe = nv_init_one,
143 .remove = ata_pci_remove_one,
144};
145
Jeff Garzik193515d2005-11-07 00:59:37 -0500146static struct scsi_host_template nv_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .module = THIS_MODULE,
148 .name = DRV_NAME,
149 .ioctl = ata_scsi_ioctl,
150 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 .can_queue = ATA_DEF_QUEUE,
152 .this_id = ATA_SHT_THIS_ID,
153 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
155 .emulated = ATA_SHT_EMULATED,
156 .use_clustering = ATA_SHT_USE_CLUSTERING,
157 .proc_name = DRV_NAME,
158 .dma_boundary = ATA_DMA_BOUNDARY,
159 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900160 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162};
163
Jeff Garzik057ace52005-10-22 14:27:05 -0400164static const struct ata_port_operations nv_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 .port_disable = ata_port_disable,
166 .tf_load = ata_tf_load,
167 .tf_read = ata_tf_read,
168 .exec_command = ata_exec_command,
169 .check_status = ata_check_status,
170 .dev_select = ata_std_dev_select,
171 .phy_reset = sata_phy_reset,
172 .bmdma_setup = ata_bmdma_setup,
173 .bmdma_start = ata_bmdma_start,
174 .bmdma_stop = ata_bmdma_stop,
175 .bmdma_status = ata_bmdma_status,
176 .qc_prep = ata_qc_prep,
177 .qc_issue = ata_qc_issue_prot,
178 .eng_timeout = ata_eng_timeout,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100179 .data_xfer = ata_pio_data_xfer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 .irq_handler = nv_interrupt,
181 .irq_clear = ata_bmdma_irq_clear,
182 .scr_read = nv_scr_read,
183 .scr_write = nv_scr_write,
184 .port_start = ata_port_start,
185 .port_stop = ata_port_stop,
Tejun Heoe6faf082006-06-17 15:49:55 +0900186 .host_stop = ata_pci_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187};
188
189/* FIXME: The hardware provides the necessary SATA PHY controls
190 * to support ATA_FLAG_SATA_RESET. However, it is currently
191 * necessary to disable that flag, to solve misdetection problems.
192 * See http://bugme.osdl.org/show_bug.cgi?id=3352 for more info.
193 *
194 * This problem really needs to be investigated further. But in the
195 * meantime, we avoid ATA_FLAG_SATA_RESET to get people working.
196 */
197static struct ata_port_info nv_port_info = {
198 .sht = &nv_sht,
199 .host_flags = ATA_FLAG_SATA |
200 /* ATA_FLAG_SATA_RESET | */
201 ATA_FLAG_SRST |
202 ATA_FLAG_NO_LEGACY,
203 .pio_mask = NV_PIO_MASK,
204 .mwdma_mask = NV_MWDMA_MASK,
205 .udma_mask = NV_UDMA_MASK,
206 .port_ops = &nv_ops,
207};
208
209MODULE_AUTHOR("NVIDIA");
210MODULE_DESCRIPTION("low-level driver for NVIDIA nForce SATA controller");
211MODULE_LICENSE("GPL");
212MODULE_DEVICE_TABLE(pci, nv_pci_tbl);
213MODULE_VERSION(DRV_VERSION);
214
215static irqreturn_t nv_interrupt (int irq, void *dev_instance,
216 struct pt_regs *regs)
217{
218 struct ata_host_set *host_set = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 unsigned int i;
220 unsigned int handled = 0;
221 unsigned long flags;
222
223 spin_lock_irqsave(&host_set->lock, flags);
224
225 for (i = 0; i < host_set->n_ports; i++) {
226 struct ata_port *ap;
227
228 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +0900229 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400230 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 struct ata_queued_cmd *qc;
232
233 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800234 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 handled += ata_host_intr(ap, qc);
Andrew Chewb8870302006-01-04 19:13:04 -0800236 else
237 // No request pending? Clear interrupt status
238 // anyway, in case there's one pending.
239 ap->ops->check_status(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241
242 }
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 spin_unlock_irqrestore(&host_set->lock, flags);
245
246 return IRQ_RETVAL(handled);
247}
248
249static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg)
250{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (sc_reg > SCR_CONTROL)
252 return 0xffffffffU;
253
Jeff Garzik02cbd922006-03-22 23:59:46 -0500254 return ioread32((void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
257static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
258{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (sc_reg > SCR_CONTROL)
260 return;
261
Jeff Garzik02cbd922006-03-22 23:59:46 -0500262 iowrite32(val, (void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
266{
267 static int printed_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct ata_port_info *ppi;
269 struct ata_probe_ent *probe_ent;
270 int pci_dev_busy = 0;
271 int rc;
272 u32 bar;
Jeff Garzik02cbd922006-03-22 23:59:46 -0500273 unsigned long base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 // Make sure this is a SATA controller by counting the number of bars
276 // (NVIDIA SATA controllers will always have six bars). Otherwise,
277 // it's an IDE controller and we ignore it.
278 for (bar=0; bar<6; bar++)
279 if (pci_resource_start(pdev, bar) == 0)
280 return -ENODEV;
281
282 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500283 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 rc = pci_enable_device(pdev);
286 if (rc)
287 goto err_out;
288
289 rc = pci_request_regions(pdev, DRV_NAME);
290 if (rc) {
291 pci_dev_busy = 1;
292 goto err_out_disable;
293 }
294
295 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
296 if (rc)
297 goto err_out_regions;
298 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
299 if (rc)
300 goto err_out_regions;
301
302 rc = -ENOMEM;
303
304 ppi = &nv_port_info;
Alan Cox47a86592005-10-04 08:09:19 -0400305 probe_ent = ata_pci_init_native_mode(pdev, &ppi, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (!probe_ent)
307 goto err_out_regions;
308
Jeff Garzik02cbd922006-03-22 23:59:46 -0500309 probe_ent->mmio_base = pci_iomap(pdev, 5, 0);
310 if (!probe_ent->mmio_base) {
311 rc = -EIO;
Tejun Heoe6faf082006-06-17 15:49:55 +0900312 goto err_out_free_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
314
Jeff Garzik02cbd922006-03-22 23:59:46 -0500315 base = (unsigned long)probe_ent->mmio_base;
316
317 probe_ent->port[0].scr_addr = base + NV_PORT0_SCR_REG_OFFSET;
318 probe_ent->port[1].scr_addr = base + NV_PORT1_SCR_REG_OFFSET;
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 pci_set_master(pdev);
321
322 rc = ata_device_add(probe_ent);
323 if (rc != NV_PORTS)
324 goto err_out_iounmap;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 kfree(probe_ent);
327
328 return 0;
329
330err_out_iounmap:
Jeff Garzik02cbd922006-03-22 23:59:46 -0500331 pci_iounmap(pdev, probe_ent->mmio_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332err_out_free_ent:
333 kfree(probe_ent);
334err_out_regions:
335 pci_release_regions(pdev);
336err_out_disable:
337 if (!pci_dev_busy)
338 pci_disable_device(pdev);
339err_out:
340 return rc;
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static int __init nv_init(void)
344{
345 return pci_module_init(&nv_pci_driver);
346}
347
348static void __exit nv_exit(void)
349{
350 pci_unregister_driver(&nv_pci_driver);
351}
352
353module_init(nv_init);
354module_exit(nv_exit);