blob: 1cb7b44cb660d2053fafa55b6cdf727be40fdc44 [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
Tejun Heo27e4b272006-06-17 15:49:55 +090057 /* INT_STATUS/ENABLE */
Jeff Garzik10ad05d2006-03-22 23:50:50 -050058 NV_INT_STATUS = 0x10,
Jeff Garzik10ad05d2006-03-22 23:50:50 -050059 NV_INT_ENABLE = 0x11,
Tejun Heo27e4b272006-06-17 15:49:55 +090060 NV_INT_STATUS_CK804 = 0x440,
Jeff Garzik10ad05d2006-03-22 23:50:50 -050061 NV_INT_ENABLE_CK804 = 0x441,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Tejun Heo27e4b272006-06-17 15:49:55 +090063 /* INT_STATUS/ENABLE bits */
64 NV_INT_DEV = 0x01,
65 NV_INT_PM = 0x02,
66 NV_INT_ADDED = 0x04,
67 NV_INT_REMOVED = 0x08,
68
69 NV_INT_PORT_SHIFT = 4, /* each port occupies 4 bits */
70
71 /* INT_CONFIG */
Jeff Garzik10ad05d2006-03-22 23:50:50 -050072 NV_INT_CONFIG = 0x12,
73 NV_INT_CONFIG_METHD = 0x01, // 0 = INT, 1 = SMI
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jeff Garzik10ad05d2006-03-22 23:50:50 -050075 // For PCI config register 20
76 NV_MCP_SATA_CFG_20 = 0x50,
77 NV_MCP_SATA_CFG_20_SATA_SPACE_EN = 0x04,
78};
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
81static irqreturn_t nv_interrupt (int irq, void *dev_instance,
82 struct pt_regs *regs);
83static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg);
84static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86enum nv_host_type
87{
88 GENERIC,
89 NFORCE2,
Tejun Heo27e4b272006-06-17 15:49:55 +090090 NFORCE3 = NFORCE2, /* NF2 == NF3 as far as sata_nv is concerned */
Andy Curride7102452005-10-07 08:53:39 -070091 CK804
Linus Torvalds1da177e2005-04-16 15:20:36 -070092};
93
Jeff Garzik3b7d6972005-11-10 11:04:11 -050094static const struct pci_device_id nv_pci_tbl[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_SATA,
96 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE2 },
97 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA,
98 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
99 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA2,
100 PCI_ANY_ID, PCI_ANY_ID, 0, 0, NFORCE3 },
101 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA,
102 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
103 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA2,
104 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
105 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA,
106 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
107 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA2,
108 PCI_ANY_ID, PCI_ANY_ID, 0, 0, CK804 },
Daniel Drake541134c2005-07-03 13:44:39 +0100109 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA,
Andy Curride7102452005-10-07 08:53:39 -0700110 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100111 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA2,
Andy Curride7102452005-10-07 08:53:39 -0700112 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100113 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA,
Andy Curride7102452005-10-07 08:53:39 -0700114 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Andy Curride86ee662005-09-19 06:17:52 -0700115 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA2,
Andy Curride7102452005-10-07 08:53:39 -0700116 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Andrew Chew4c5c8162006-04-20 15:54:26 -0700117 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA,
118 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
119 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA2,
120 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
121 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA3,
122 PCI_ANY_ID, PCI_ANY_ID, 0, 0, GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
124 PCI_ANY_ID, PCI_ANY_ID,
125 PCI_CLASS_STORAGE_IDE<<8, 0xffff00, GENERIC },
Daniel Drake541134c2005-07-03 13:44:39 +0100126 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
127 PCI_ANY_ID, PCI_ANY_ID,
128 PCI_CLASS_STORAGE_RAID<<8, 0xffff00, GENERIC },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 { 0, } /* terminate list */
130};
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132static struct pci_driver nv_pci_driver = {
133 .name = DRV_NAME,
134 .id_table = nv_pci_tbl,
135 .probe = nv_init_one,
136 .remove = ata_pci_remove_one,
137};
138
Jeff Garzik193515d2005-11-07 00:59:37 -0500139static struct scsi_host_template nv_sht = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .module = THIS_MODULE,
141 .name = DRV_NAME,
142 .ioctl = ata_scsi_ioctl,
143 .queuecommand = ata_scsi_queuecmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .can_queue = ATA_DEF_QUEUE,
145 .this_id = ATA_SHT_THIS_ID,
146 .sg_tablesize = LIBATA_MAX_PRD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
148 .emulated = ATA_SHT_EMULATED,
149 .use_clustering = ATA_SHT_USE_CLUSTERING,
150 .proc_name = DRV_NAME,
151 .dma_boundary = ATA_DMA_BOUNDARY,
152 .slave_configure = ata_scsi_slave_config,
Tejun Heoccf68c32006-05-31 18:28:09 +0900153 .slave_destroy = ata_scsi_slave_destroy,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 .bios_param = ata_std_bios_param,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155};
156
Jeff Garzik057ace52005-10-22 14:27:05 -0400157static const struct ata_port_operations nv_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 .port_disable = ata_port_disable,
159 .tf_load = ata_tf_load,
160 .tf_read = ata_tf_read,
161 .exec_command = ata_exec_command,
162 .check_status = ata_check_status,
163 .dev_select = ata_std_dev_select,
164 .phy_reset = sata_phy_reset,
165 .bmdma_setup = ata_bmdma_setup,
166 .bmdma_start = ata_bmdma_start,
167 .bmdma_stop = ata_bmdma_stop,
168 .bmdma_status = ata_bmdma_status,
169 .qc_prep = ata_qc_prep,
170 .qc_issue = ata_qc_issue_prot,
171 .eng_timeout = ata_eng_timeout,
Alan Coxa6b2c5d2006-05-22 16:59:59 +0100172 .data_xfer = ata_pio_data_xfer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .irq_handler = nv_interrupt,
174 .irq_clear = ata_bmdma_irq_clear,
175 .scr_read = nv_scr_read,
176 .scr_write = nv_scr_write,
177 .port_start = ata_port_start,
178 .port_stop = ata_port_stop,
Tejun Heoe6faf082006-06-17 15:49:55 +0900179 .host_stop = ata_pci_host_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180};
181
182/* FIXME: The hardware provides the necessary SATA PHY controls
183 * to support ATA_FLAG_SATA_RESET. However, it is currently
184 * necessary to disable that flag, to solve misdetection problems.
185 * See http://bugme.osdl.org/show_bug.cgi?id=3352 for more info.
186 *
187 * This problem really needs to be investigated further. But in the
188 * meantime, we avoid ATA_FLAG_SATA_RESET to get people working.
189 */
190static struct ata_port_info nv_port_info = {
191 .sht = &nv_sht,
192 .host_flags = ATA_FLAG_SATA |
193 /* ATA_FLAG_SATA_RESET | */
194 ATA_FLAG_SRST |
195 ATA_FLAG_NO_LEGACY,
196 .pio_mask = NV_PIO_MASK,
197 .mwdma_mask = NV_MWDMA_MASK,
198 .udma_mask = NV_UDMA_MASK,
199 .port_ops = &nv_ops,
200};
201
202MODULE_AUTHOR("NVIDIA");
203MODULE_DESCRIPTION("low-level driver for NVIDIA nForce SATA controller");
204MODULE_LICENSE("GPL");
205MODULE_DEVICE_TABLE(pci, nv_pci_tbl);
206MODULE_VERSION(DRV_VERSION);
207
208static irqreturn_t nv_interrupt (int irq, void *dev_instance,
209 struct pt_regs *regs)
210{
211 struct ata_host_set *host_set = dev_instance;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 unsigned int i;
213 unsigned int handled = 0;
214 unsigned long flags;
215
216 spin_lock_irqsave(&host_set->lock, flags);
217
218 for (i = 0; i < host_set->n_ports; i++) {
219 struct ata_port *ap;
220
221 ap = host_set->ports[i];
Tejun Heoc1389502005-08-22 14:59:24 +0900222 if (ap &&
Jeff Garzik029f5462006-04-02 10:30:40 -0400223 !(ap->flags & ATA_FLAG_DISABLED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 struct ata_queued_cmd *qc;
225
226 qc = ata_qc_from_tag(ap, ap->active_tag);
Albert Leee50362e2005-09-27 17:39:50 +0800227 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 handled += ata_host_intr(ap, qc);
Andrew Chewb8870302006-01-04 19:13:04 -0800229 else
230 // No request pending? Clear interrupt status
231 // anyway, in case there's one pending.
232 ap->ops->check_status(ap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 }
234
235 }
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 spin_unlock_irqrestore(&host_set->lock, flags);
238
239 return IRQ_RETVAL(handled);
240}
241
242static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg)
243{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 if (sc_reg > SCR_CONTROL)
245 return 0xffffffffU;
246
Jeff Garzik02cbd922006-03-22 23:59:46 -0500247 return ioread32((void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248}
249
250static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
251{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (sc_reg > SCR_CONTROL)
253 return;
254
Jeff Garzik02cbd922006-03-22 23:59:46 -0500255 iowrite32(val, (void __iomem *)ap->ioaddr.scr_addr + (sc_reg * 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
259{
260 static int printed_version = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 struct ata_port_info *ppi;
262 struct ata_probe_ent *probe_ent;
263 int pci_dev_busy = 0;
264 int rc;
265 u32 bar;
Jeff Garzik02cbd922006-03-22 23:59:46 -0500266 unsigned long base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 // Make sure this is a SATA controller by counting the number of bars
269 // (NVIDIA SATA controllers will always have six bars). Otherwise,
270 // it's an IDE controller and we ignore it.
271 for (bar=0; bar<6; bar++)
272 if (pci_resource_start(pdev, bar) == 0)
273 return -ENODEV;
274
275 if (!printed_version++)
Jeff Garzika9524a72005-10-30 14:39:11 -0500276 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 rc = pci_enable_device(pdev);
279 if (rc)
280 goto err_out;
281
282 rc = pci_request_regions(pdev, DRV_NAME);
283 if (rc) {
284 pci_dev_busy = 1;
285 goto err_out_disable;
286 }
287
288 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
289 if (rc)
290 goto err_out_regions;
291 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
292 if (rc)
293 goto err_out_regions;
294
295 rc = -ENOMEM;
296
297 ppi = &nv_port_info;
Alan Cox47a86592005-10-04 08:09:19 -0400298 probe_ent = ata_pci_init_native_mode(pdev, &ppi, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 if (!probe_ent)
300 goto err_out_regions;
301
Jeff Garzik02cbd922006-03-22 23:59:46 -0500302 probe_ent->mmio_base = pci_iomap(pdev, 5, 0);
303 if (!probe_ent->mmio_base) {
304 rc = -EIO;
Tejun Heoe6faf082006-06-17 15:49:55 +0900305 goto err_out_free_ent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 }
307
Jeff Garzik02cbd922006-03-22 23:59:46 -0500308 base = (unsigned long)probe_ent->mmio_base;
309
310 probe_ent->port[0].scr_addr = base + NV_PORT0_SCR_REG_OFFSET;
311 probe_ent->port[1].scr_addr = base + NV_PORT1_SCR_REG_OFFSET;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 pci_set_master(pdev);
314
315 rc = ata_device_add(probe_ent);
316 if (rc != NV_PORTS)
317 goto err_out_iounmap;
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 kfree(probe_ent);
320
321 return 0;
322
323err_out_iounmap:
Jeff Garzik02cbd922006-03-22 23:59:46 -0500324 pci_iounmap(pdev, probe_ent->mmio_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325err_out_free_ent:
326 kfree(probe_ent);
327err_out_regions:
328 pci_release_regions(pdev);
329err_out_disable:
330 if (!pci_dev_busy)
331 pci_disable_device(pdev);
332err_out:
333 return rc;
334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336static int __init nv_init(void)
337{
338 return pci_module_init(&nv_pci_driver);
339}
340
341static void __exit nv_exit(void)
342{
343 pci_unregister_driver(&nv_pci_driver);
344}
345
346module_init(nv_init);
347module_exit(nv_exit);