]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/ata/sata_nv.c
SiS warning fixes
[net-next-2.6.git] / drivers / ata / sata_nv.c
CommitLineData
1da177e4
LT
1/*
2 * sata_nv.c - NVIDIA nForce SATA
3 *
4 * Copyright 2004 NVIDIA Corp. All rights reserved.
5 * Copyright 2004 Andrew Chew
6 *
aa7e16d6
JG
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.
1da177e4 21 *
af36d7f0
JG
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 *
fbbb262d
RH
32 * CK804/MCP04 controllers support an alternate programming interface
33 * similar to the ADMA specification (with some modifications).
34 * This allows the use of NCQ. Non-DMA-mapped ATA commands are still
35 * sent through the legacy interface.
36 *
1da177e4
LT
37 */
38
1da177e4
LT
39#include <linux/kernel.h>
40#include <linux/module.h>
41#include <linux/pci.h>
42#include <linux/init.h>
43#include <linux/blkdev.h>
44#include <linux/delay.h>
45#include <linux/interrupt.h>
a9524a76 46#include <linux/device.h>
1da177e4 47#include <scsi/scsi_host.h>
fbbb262d 48#include <scsi/scsi_device.h>
1da177e4
LT
49#include <linux/libata.h>
50
51#define DRV_NAME "sata_nv"
cdf56bcf 52#define DRV_VERSION "3.3"
fbbb262d
RH
53
54#define NV_ADMA_DMA_BOUNDARY 0xffffffffUL
1da177e4 55
10ad05df 56enum {
0d5ff566
TH
57 NV_MMIO_BAR = 5,
58
10ad05df
JG
59 NV_PORTS = 2,
60 NV_PIO_MASK = 0x1f,
61 NV_MWDMA_MASK = 0x07,
62 NV_UDMA_MASK = 0x7f,
63 NV_PORT0_SCR_REG_OFFSET = 0x00,
64 NV_PORT1_SCR_REG_OFFSET = 0x40,
1da177e4 65
27e4b274 66 /* INT_STATUS/ENABLE */
10ad05df 67 NV_INT_STATUS = 0x10,
10ad05df 68 NV_INT_ENABLE = 0x11,
27e4b274 69 NV_INT_STATUS_CK804 = 0x440,
10ad05df 70 NV_INT_ENABLE_CK804 = 0x441,
1da177e4 71
27e4b274
TH
72 /* INT_STATUS/ENABLE bits */
73 NV_INT_DEV = 0x01,
74 NV_INT_PM = 0x02,
75 NV_INT_ADDED = 0x04,
76 NV_INT_REMOVED = 0x08,
77
78 NV_INT_PORT_SHIFT = 4, /* each port occupies 4 bits */
79
39f87582 80 NV_INT_ALL = 0x0f,
5a44efff
TH
81 NV_INT_MASK = NV_INT_DEV |
82 NV_INT_ADDED | NV_INT_REMOVED,
39f87582 83
27e4b274 84 /* INT_CONFIG */
10ad05df
JG
85 NV_INT_CONFIG = 0x12,
86 NV_INT_CONFIG_METHD = 0x01, // 0 = INT, 1 = SMI
1da177e4 87
10ad05df
JG
88 // For PCI config register 20
89 NV_MCP_SATA_CFG_20 = 0x50,
90 NV_MCP_SATA_CFG_20_SATA_SPACE_EN = 0x04,
fbbb262d
RH
91 NV_MCP_SATA_CFG_20_PORT0_EN = (1 << 17),
92 NV_MCP_SATA_CFG_20_PORT1_EN = (1 << 16),
93 NV_MCP_SATA_CFG_20_PORT0_PWB_EN = (1 << 14),
94 NV_MCP_SATA_CFG_20_PORT1_PWB_EN = (1 << 12),
95
96 NV_ADMA_MAX_CPBS = 32,
97 NV_ADMA_CPB_SZ = 128,
98 NV_ADMA_APRD_SZ = 16,
99 NV_ADMA_SGTBL_LEN = (1024 - NV_ADMA_CPB_SZ) /
100 NV_ADMA_APRD_SZ,
101 NV_ADMA_SGTBL_TOTAL_LEN = NV_ADMA_SGTBL_LEN + 5,
102 NV_ADMA_SGTBL_SZ = NV_ADMA_SGTBL_LEN * NV_ADMA_APRD_SZ,
103 NV_ADMA_PORT_PRIV_DMA_SZ = NV_ADMA_MAX_CPBS *
104 (NV_ADMA_CPB_SZ + NV_ADMA_SGTBL_SZ),
105
106 /* BAR5 offset to ADMA general registers */
107 NV_ADMA_GEN = 0x400,
108 NV_ADMA_GEN_CTL = 0x00,
109 NV_ADMA_NOTIFIER_CLEAR = 0x30,
110
111 /* BAR5 offset to ADMA ports */
112 NV_ADMA_PORT = 0x480,
113
114 /* size of ADMA port register space */
115 NV_ADMA_PORT_SIZE = 0x100,
116
117 /* ADMA port registers */
118 NV_ADMA_CTL = 0x40,
119 NV_ADMA_CPB_COUNT = 0x42,
120 NV_ADMA_NEXT_CPB_IDX = 0x43,
121 NV_ADMA_STAT = 0x44,
122 NV_ADMA_CPB_BASE_LOW = 0x48,
123 NV_ADMA_CPB_BASE_HIGH = 0x4C,
124 NV_ADMA_APPEND = 0x50,
125 NV_ADMA_NOTIFIER = 0x68,
126 NV_ADMA_NOTIFIER_ERROR = 0x6C,
127
128 /* NV_ADMA_CTL register bits */
129 NV_ADMA_CTL_HOTPLUG_IEN = (1 << 0),
130 NV_ADMA_CTL_CHANNEL_RESET = (1 << 5),
131 NV_ADMA_CTL_GO = (1 << 7),
132 NV_ADMA_CTL_AIEN = (1 << 8),
133 NV_ADMA_CTL_READ_NON_COHERENT = (1 << 11),
134 NV_ADMA_CTL_WRITE_NON_COHERENT = (1 << 12),
135
136 /* CPB response flag bits */
137 NV_CPB_RESP_DONE = (1 << 0),
138 NV_CPB_RESP_ATA_ERR = (1 << 3),
139 NV_CPB_RESP_CMD_ERR = (1 << 4),
140 NV_CPB_RESP_CPB_ERR = (1 << 7),
141
142 /* CPB control flag bits */
143 NV_CPB_CTL_CPB_VALID = (1 << 0),
144 NV_CPB_CTL_QUEUE = (1 << 1),
145 NV_CPB_CTL_APRD_VALID = (1 << 2),
146 NV_CPB_CTL_IEN = (1 << 3),
147 NV_CPB_CTL_FPDMA = (1 << 4),
148
149 /* APRD flags */
150 NV_APRD_WRITE = (1 << 1),
151 NV_APRD_END = (1 << 2),
152 NV_APRD_CONT = (1 << 3),
153
154 /* NV_ADMA_STAT flags */
155 NV_ADMA_STAT_TIMEOUT = (1 << 0),
156 NV_ADMA_STAT_HOTUNPLUG = (1 << 1),
157 NV_ADMA_STAT_HOTPLUG = (1 << 2),
158 NV_ADMA_STAT_CPBERR = (1 << 4),
159 NV_ADMA_STAT_SERROR = (1 << 5),
160 NV_ADMA_STAT_CMD_COMPLETE = (1 << 6),
161 NV_ADMA_STAT_IDLE = (1 << 8),
162 NV_ADMA_STAT_LEGACY = (1 << 9),
163 NV_ADMA_STAT_STOPPED = (1 << 10),
164 NV_ADMA_STAT_DONE = (1 << 12),
165 NV_ADMA_STAT_ERR = NV_ADMA_STAT_CPBERR |
166 NV_ADMA_STAT_TIMEOUT,
167
168 /* port flags */
169 NV_ADMA_PORT_REGISTER_MODE = (1 << 0),
2dec7555 170 NV_ADMA_ATAPI_SETUP_COMPLETE = (1 << 1),
fbbb262d
RH
171
172};
173
174/* ADMA Physical Region Descriptor - one SG segment */
175struct nv_adma_prd {
176 __le64 addr;
177 __le32 len;
178 u8 flags;
179 u8 packet_len;
180 __le16 reserved;
181};
182
183enum nv_adma_regbits {
184 CMDEND = (1 << 15), /* end of command list */
185 WNB = (1 << 14), /* wait-not-BSY */
186 IGN = (1 << 13), /* ignore this entry */
187 CS1n = (1 << (4 + 8)), /* std. PATA signals follow... */
188 DA2 = (1 << (2 + 8)),
189 DA1 = (1 << (1 + 8)),
190 DA0 = (1 << (0 + 8)),
191};
192
193/* ADMA Command Parameter Block
194 The first 5 SG segments are stored inside the Command Parameter Block itself.
195 If there are more than 5 segments the remainder are stored in a separate
196 memory area indicated by next_aprd. */
197struct nv_adma_cpb {
198 u8 resp_flags; /* 0 */
199 u8 reserved1; /* 1 */
200 u8 ctl_flags; /* 2 */
201 /* len is length of taskfile in 64 bit words */
202 u8 len; /* 3 */
203 u8 tag; /* 4 */
204 u8 next_cpb_idx; /* 5 */
205 __le16 reserved2; /* 6-7 */
206 __le16 tf[12]; /* 8-31 */
207 struct nv_adma_prd aprd[5]; /* 32-111 */
208 __le64 next_aprd; /* 112-119 */
209 __le64 reserved3; /* 120-127 */
10ad05df 210};
1da177e4 211
fbbb262d
RH
212
213struct nv_adma_port_priv {
214 struct nv_adma_cpb *cpb;
215 dma_addr_t cpb_dma;
216 struct nv_adma_prd *aprd;
217 dma_addr_t aprd_dma;
cdf56bcf
RH
218 void __iomem * ctl_block;
219 void __iomem * gen_block;
220 void __iomem * notifier_clear_block;
fbbb262d
RH
221 u8 flags;
222};
223
cdf56bcf
RH
224struct nv_host_priv {
225 unsigned long type;
226};
227
fbbb262d
RH
228#define NV_ADMA_CHECK_INTR(GCTL, PORT) ((GCTL) & ( 1 << (19 + (12 * (PORT)))))
229
1da177e4 230static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
cdf56bcf
RH
231static void nv_remove_one (struct pci_dev *pdev);
232static int nv_pci_device_resume(struct pci_dev *pdev);
cca3974e 233static void nv_ck804_host_stop(struct ata_host *host);
7d12e780
DH
234static irqreturn_t nv_generic_interrupt(int irq, void *dev_instance);
235static irqreturn_t nv_nf2_interrupt(int irq, void *dev_instance);
236static irqreturn_t nv_ck804_interrupt(int irq, void *dev_instance);
1da177e4
LT
237static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg);
238static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
1da177e4 239
39f87582
TH
240static void nv_nf2_freeze(struct ata_port *ap);
241static void nv_nf2_thaw(struct ata_port *ap);
242static void nv_ck804_freeze(struct ata_port *ap);
243static void nv_ck804_thaw(struct ata_port *ap);
244static void nv_error_handler(struct ata_port *ap);
fbbb262d 245static int nv_adma_slave_config(struct scsi_device *sdev);
2dec7555 246static int nv_adma_check_atapi_dma(struct ata_queued_cmd *qc);
fbbb262d
RH
247static void nv_adma_qc_prep(struct ata_queued_cmd *qc);
248static unsigned int nv_adma_qc_issue(struct ata_queued_cmd *qc);
249static irqreturn_t nv_adma_interrupt(int irq, void *dev_instance);
250static void nv_adma_irq_clear(struct ata_port *ap);
251static int nv_adma_port_start(struct ata_port *ap);
252static void nv_adma_port_stop(struct ata_port *ap);
cdf56bcf
RH
253static int nv_adma_port_suspend(struct ata_port *ap, pm_message_t mesg);
254static int nv_adma_port_resume(struct ata_port *ap);
fbbb262d
RH
255static void nv_adma_error_handler(struct ata_port *ap);
256static void nv_adma_host_stop(struct ata_host *host);
257static void nv_adma_bmdma_setup(struct ata_queued_cmd *qc);
258static void nv_adma_bmdma_start(struct ata_queued_cmd *qc);
259static void nv_adma_bmdma_stop(struct ata_queued_cmd *qc);
260static u8 nv_adma_bmdma_status(struct ata_port *ap);
39f87582 261
1da177e4
LT
262enum nv_host_type
263{
264 GENERIC,
265 NFORCE2,
27e4b274 266 NFORCE3 = NFORCE2, /* NF2 == NF3 as far as sata_nv is concerned */
fbbb262d
RH
267 CK804,
268 ADMA
1da177e4
LT
269};
270
3b7d697d 271static const struct pci_device_id nv_pci_tbl[] = {
54bb3a94
JG
272 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE2S_SATA), NFORCE2 },
273 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA), NFORCE3 },
274 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE3S_SATA2), NFORCE3 },
275 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA), CK804 },
276 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_CK804_SATA2), CK804 },
277 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA), CK804 },
278 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP04_SATA2), CK804 },
279 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA), GENERIC },
280 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SATA2), GENERIC },
281 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA), GENERIC },
282 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SATA2), GENERIC },
283 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA), GENERIC },
284 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA2), GENERIC },
285 { PCI_VDEVICE(NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SATA3), GENERIC },
1da177e4
LT
286 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
287 PCI_ANY_ID, PCI_ANY_ID,
288 PCI_CLASS_STORAGE_IDE<<8, 0xffff00, GENERIC },
541134cf
DD
289 { PCI_VENDOR_ID_NVIDIA, PCI_ANY_ID,
290 PCI_ANY_ID, PCI_ANY_ID,
291 PCI_CLASS_STORAGE_RAID<<8, 0xffff00, GENERIC },
2d2744fc
JG
292
293 { } /* terminate list */
1da177e4
LT
294};
295
1da177e4
LT
296static struct pci_driver nv_pci_driver = {
297 .name = DRV_NAME,
298 .id_table = nv_pci_tbl,
299 .probe = nv_init_one,
cdf56bcf
RH
300 .suspend = ata_pci_device_suspend,
301 .resume = nv_pci_device_resume,
302 .remove = nv_remove_one,
1da177e4
LT
303};
304
193515d5 305static struct scsi_host_template nv_sht = {
1da177e4
LT
306 .module = THIS_MODULE,
307 .name = DRV_NAME,
308 .ioctl = ata_scsi_ioctl,
309 .queuecommand = ata_scsi_queuecmd,
1da177e4
LT
310 .can_queue = ATA_DEF_QUEUE,
311 .this_id = ATA_SHT_THIS_ID,
312 .sg_tablesize = LIBATA_MAX_PRD,
1da177e4
LT
313 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
314 .emulated = ATA_SHT_EMULATED,
315 .use_clustering = ATA_SHT_USE_CLUSTERING,
316 .proc_name = DRV_NAME,
317 .dma_boundary = ATA_DMA_BOUNDARY,
318 .slave_configure = ata_scsi_slave_config,
ccf68c34 319 .slave_destroy = ata_scsi_slave_destroy,
1da177e4 320 .bios_param = ata_std_bios_param,
cdf56bcf
RH
321 .suspend = ata_scsi_device_suspend,
322 .resume = ata_scsi_device_resume,
1da177e4
LT
323};
324
fbbb262d
RH
325static struct scsi_host_template nv_adma_sht = {
326 .module = THIS_MODULE,
327 .name = DRV_NAME,
328 .ioctl = ata_scsi_ioctl,
329 .queuecommand = ata_scsi_queuecmd,
330 .can_queue = NV_ADMA_MAX_CPBS,
331 .this_id = ATA_SHT_THIS_ID,
332 .sg_tablesize = NV_ADMA_SGTBL_TOTAL_LEN,
fbbb262d
RH
333 .cmd_per_lun = ATA_SHT_CMD_PER_LUN,
334 .emulated = ATA_SHT_EMULATED,
335 .use_clustering = ATA_SHT_USE_CLUSTERING,
336 .proc_name = DRV_NAME,
337 .dma_boundary = NV_ADMA_DMA_BOUNDARY,
338 .slave_configure = nv_adma_slave_config,
339 .slave_destroy = ata_scsi_slave_destroy,
340 .bios_param = ata_std_bios_param,
cdf56bcf
RH
341 .suspend = ata_scsi_device_suspend,
342 .resume = ata_scsi_device_resume,
fbbb262d
RH
343};
344
ada364e8 345static const struct ata_port_operations nv_generic_ops = {
1da177e4
LT
346 .port_disable = ata_port_disable,
347 .tf_load = ata_tf_load,
348 .tf_read = ata_tf_read,
349 .exec_command = ata_exec_command,
350 .check_status = ata_check_status,
351 .dev_select = ata_std_dev_select,
1da177e4
LT
352 .bmdma_setup = ata_bmdma_setup,
353 .bmdma_start = ata_bmdma_start,
354 .bmdma_stop = ata_bmdma_stop,
355 .bmdma_status = ata_bmdma_status,
356 .qc_prep = ata_qc_prep,
357 .qc_issue = ata_qc_issue_prot,
39f87582
TH
358 .freeze = ata_bmdma_freeze,
359 .thaw = ata_bmdma_thaw,
360 .error_handler = nv_error_handler,
361 .post_internal_cmd = ata_bmdma_post_internal_cmd,
0d5ff566 362 .data_xfer = ata_data_xfer,
ada364e8 363 .irq_handler = nv_generic_interrupt,
1da177e4 364 .irq_clear = ata_bmdma_irq_clear,
246ce3b6
AI
365 .irq_on = ata_irq_on,
366 .irq_ack = ata_irq_ack,
1da177e4
LT
367 .scr_read = nv_scr_read,
368 .scr_write = nv_scr_write,
369 .port_start = ata_port_start,
1da177e4
LT
370};
371
ada364e8
TH
372static const struct ata_port_operations nv_nf2_ops = {
373 .port_disable = ata_port_disable,
374 .tf_load = ata_tf_load,
375 .tf_read = ata_tf_read,
376 .exec_command = ata_exec_command,
377 .check_status = ata_check_status,
378 .dev_select = ata_std_dev_select,
ada364e8
TH
379 .bmdma_setup = ata_bmdma_setup,
380 .bmdma_start = ata_bmdma_start,
381 .bmdma_stop = ata_bmdma_stop,
382 .bmdma_status = ata_bmdma_status,
383 .qc_prep = ata_qc_prep,
384 .qc_issue = ata_qc_issue_prot,
39f87582
TH
385 .freeze = nv_nf2_freeze,
386 .thaw = nv_nf2_thaw,
387 .error_handler = nv_error_handler,
388 .post_internal_cmd = ata_bmdma_post_internal_cmd,
0d5ff566 389 .data_xfer = ata_data_xfer,
ada364e8
TH
390 .irq_handler = nv_nf2_interrupt,
391 .irq_clear = ata_bmdma_irq_clear,
246ce3b6
AI
392 .irq_on = ata_irq_on,
393 .irq_ack = ata_irq_ack,
ada364e8
TH
394 .scr_read = nv_scr_read,
395 .scr_write = nv_scr_write,
396 .port_start = ata_port_start,
ada364e8
TH
397};
398
399static const struct ata_port_operations nv_ck804_ops = {
400 .port_disable = ata_port_disable,
401 .tf_load = ata_tf_load,
402 .tf_read = ata_tf_read,
403 .exec_command = ata_exec_command,
404 .check_status = ata_check_status,
405 .dev_select = ata_std_dev_select,
ada364e8
TH
406 .bmdma_setup = ata_bmdma_setup,
407 .bmdma_start = ata_bmdma_start,
408 .bmdma_stop = ata_bmdma_stop,
409 .bmdma_status = ata_bmdma_status,
410 .qc_prep = ata_qc_prep,
411 .qc_issue = ata_qc_issue_prot,
39f87582
TH
412 .freeze = nv_ck804_freeze,
413 .thaw = nv_ck804_thaw,
414 .error_handler = nv_error_handler,
415 .post_internal_cmd = ata_bmdma_post_internal_cmd,
0d5ff566 416 .data_xfer = ata_data_xfer,
ada364e8
TH
417 .irq_handler = nv_ck804_interrupt,
418 .irq_clear = ata_bmdma_irq_clear,
246ce3b6
AI
419 .irq_on = ata_irq_on,
420 .irq_ack = ata_irq_ack,
ada364e8
TH
421 .scr_read = nv_scr_read,
422 .scr_write = nv_scr_write,
423 .port_start = ata_port_start,
ada364e8
TH
424 .host_stop = nv_ck804_host_stop,
425};
426
fbbb262d
RH
427static const struct ata_port_operations nv_adma_ops = {
428 .port_disable = ata_port_disable,
429 .tf_load = ata_tf_load,
430 .tf_read = ata_tf_read,
2dec7555 431 .check_atapi_dma = nv_adma_check_atapi_dma,
fbbb262d
RH
432 .exec_command = ata_exec_command,
433 .check_status = ata_check_status,
434 .dev_select = ata_std_dev_select,
435 .bmdma_setup = nv_adma_bmdma_setup,
436 .bmdma_start = nv_adma_bmdma_start,
437 .bmdma_stop = nv_adma_bmdma_stop,
438 .bmdma_status = nv_adma_bmdma_status,
439 .qc_prep = nv_adma_qc_prep,
440 .qc_issue = nv_adma_qc_issue,
441 .freeze = nv_ck804_freeze,
442 .thaw = nv_ck804_thaw,
443 .error_handler = nv_adma_error_handler,
444 .post_internal_cmd = nv_adma_bmdma_stop,
0d5ff566 445 .data_xfer = ata_data_xfer,
fbbb262d
RH
446 .irq_handler = nv_adma_interrupt,
447 .irq_clear = nv_adma_irq_clear,
246ce3b6
AI
448 .irq_on = ata_irq_on,
449 .irq_ack = ata_irq_ack,
fbbb262d
RH
450 .scr_read = nv_scr_read,
451 .scr_write = nv_scr_write,
452 .port_start = nv_adma_port_start,
453 .port_stop = nv_adma_port_stop,
cdf56bcf
RH
454 .port_suspend = nv_adma_port_suspend,
455 .port_resume = nv_adma_port_resume,
fbbb262d
RH
456 .host_stop = nv_adma_host_stop,
457};
458
ada364e8
TH
459static struct ata_port_info nv_port_info[] = {
460 /* generic */
461 {
462 .sht = &nv_sht,
722420fe
TH
463 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
464 ATA_FLAG_HRST_TO_RESUME,
ada364e8
TH
465 .pio_mask = NV_PIO_MASK,
466 .mwdma_mask = NV_MWDMA_MASK,
467 .udma_mask = NV_UDMA_MASK,
468 .port_ops = &nv_generic_ops,
469 },
470 /* nforce2/3 */
471 {
472 .sht = &nv_sht,
722420fe
TH
473 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
474 ATA_FLAG_HRST_TO_RESUME,
ada364e8
TH
475 .pio_mask = NV_PIO_MASK,
476 .mwdma_mask = NV_MWDMA_MASK,
477 .udma_mask = NV_UDMA_MASK,
478 .port_ops = &nv_nf2_ops,
479 },
480 /* ck804 */
481 {
482 .sht = &nv_sht,
722420fe
TH
483 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
484 ATA_FLAG_HRST_TO_RESUME,
ada364e8
TH
485 .pio_mask = NV_PIO_MASK,
486 .mwdma_mask = NV_MWDMA_MASK,
487 .udma_mask = NV_UDMA_MASK,
488 .port_ops = &nv_ck804_ops,
489 },
fbbb262d
RH
490 /* ADMA */
491 {
492 .sht = &nv_adma_sht,
493 .flags = ATA_FLAG_SATA | ATA_FLAG_NO_LEGACY |
cdf56bcf 494 ATA_FLAG_HRST_TO_RESUME |
fbbb262d
RH
495 ATA_FLAG_MMIO | ATA_FLAG_NCQ,
496 .pio_mask = NV_PIO_MASK,
497 .mwdma_mask = NV_MWDMA_MASK,
498 .udma_mask = NV_UDMA_MASK,
499 .port_ops = &nv_adma_ops,
500 },
1da177e4
LT
501};
502
503MODULE_AUTHOR("NVIDIA");
504MODULE_DESCRIPTION("low-level driver for NVIDIA nForce SATA controller");
505MODULE_LICENSE("GPL");
506MODULE_DEVICE_TABLE(pci, nv_pci_tbl);
507MODULE_VERSION(DRV_VERSION);
508
fbbb262d
RH
509static int adma_enabled = 1;
510
2dec7555
RH
511static void nv_adma_register_mode(struct ata_port *ap)
512{
2dec7555 513 struct nv_adma_port_priv *pp = ap->private_data;
cdf56bcf 514 void __iomem *mmio = pp->ctl_block;
a2cfe81a
RH
515 u16 tmp, status;
516 int count = 0;
2dec7555
RH
517
518 if (pp->flags & NV_ADMA_PORT_REGISTER_MODE)
519 return;
520
a2cfe81a
RH
521 status = readw(mmio + NV_ADMA_STAT);
522 while(!(status & NV_ADMA_STAT_IDLE) && count < 20) {
523 ndelay(50);
524 status = readw(mmio + NV_ADMA_STAT);
525 count++;
526 }
527 if(count == 20)
528 ata_port_printk(ap, KERN_WARNING,
529 "timeout waiting for ADMA IDLE, stat=0x%hx\n",
530 status);
531
2dec7555
RH
532 tmp = readw(mmio + NV_ADMA_CTL);
533 writew(tmp & ~NV_ADMA_CTL_GO, mmio + NV_ADMA_CTL);
534
a2cfe81a
RH
535 count = 0;
536 status = readw(mmio + NV_ADMA_STAT);
537 while(!(status & NV_ADMA_STAT_LEGACY) && count < 20) {
538 ndelay(50);
539 status = readw(mmio + NV_ADMA_STAT);
540 count++;
541 }
542 if(count == 20)
543 ata_port_printk(ap, KERN_WARNING,
544 "timeout waiting for ADMA LEGACY, stat=0x%hx\n",
545 status);
546
2dec7555
RH
547 pp->flags |= NV_ADMA_PORT_REGISTER_MODE;
548}
549
550static void nv_adma_mode(struct ata_port *ap)
551{
2dec7555 552 struct nv_adma_port_priv *pp = ap->private_data;
cdf56bcf 553 void __iomem *mmio = pp->ctl_block;
a2cfe81a
RH
554 u16 tmp, status;
555 int count = 0;
2dec7555
RH
556
557 if (!(pp->flags & NV_ADMA_PORT_REGISTER_MODE))
558 return;
f20b16ff 559
2dec7555
RH
560 WARN_ON(pp->flags & NV_ADMA_ATAPI_SETUP_COMPLETE);
561
562 tmp = readw(mmio + NV_ADMA_CTL);
563 writew(tmp | NV_ADMA_CTL_GO, mmio + NV_ADMA_CTL);
564
a2cfe81a
RH
565 status = readw(mmio + NV_ADMA_STAT);
566 while(((status & NV_ADMA_STAT_LEGACY) ||
567 !(status & NV_ADMA_STAT_IDLE)) && count < 20) {
568 ndelay(50);
569 status = readw(mmio + NV_ADMA_STAT);
570 count++;
571 }
572 if(count == 20)
573 ata_port_printk(ap, KERN_WARNING,
574 "timeout waiting for ADMA LEGACY clear and IDLE, stat=0x%hx\n",
575 status);
576
2dec7555
RH
577 pp->flags &= ~NV_ADMA_PORT_REGISTER_MODE;
578}
579
fbbb262d
RH
580static int nv_adma_slave_config(struct scsi_device *sdev)
581{
582 struct ata_port *ap = ata_shost_to_port(sdev->host);
2dec7555
RH
583 struct nv_adma_port_priv *pp = ap->private_data;
584 struct pci_dev *pdev = to_pci_dev(ap->host->dev);
fbbb262d
RH
585 u64 bounce_limit;
586 unsigned long segment_boundary;
587 unsigned short sg_tablesize;
588 int rc;
2dec7555
RH
589 int adma_enable;
590 u32 current_reg, new_reg, config_mask;
fbbb262d
RH
591
592 rc = ata_scsi_slave_config(sdev);
593
594 if (sdev->id >= ATA_MAX_DEVICES || sdev->channel || sdev->lun)
595 /* Not a proper libata device, ignore */
596 return rc;
597
598 if (ap->device[sdev->id].class == ATA_DEV_ATAPI) {
599 /*
600 * NVIDIA reports that ADMA mode does not support ATAPI commands.
601 * Therefore ATAPI commands are sent through the legacy interface.
602 * However, the legacy interface only supports 32-bit DMA.
603 * Restrict DMA parameters as required by the legacy interface
604 * when an ATAPI device is connected.
605 */
606 bounce_limit = ATA_DMA_MASK;
607 segment_boundary = ATA_DMA_BOUNDARY;
608 /* Subtract 1 since an extra entry may be needed for padding, see
609 libata-scsi.c */
610 sg_tablesize = LIBATA_MAX_PRD - 1;
f20b16ff 611
2dec7555
RH
612 /* Since the legacy DMA engine is in use, we need to disable ADMA
613 on the port. */
614 adma_enable = 0;
615 nv_adma_register_mode(ap);
fbbb262d
RH
616 }
617 else {
618 bounce_limit = *ap->dev->dma_mask;
619 segment_boundary = NV_ADMA_DMA_BOUNDARY;
620 sg_tablesize = NV_ADMA_SGTBL_TOTAL_LEN;
2dec7555 621 adma_enable = 1;
fbbb262d 622 }
f20b16ff 623
2dec7555
RH
624 pci_read_config_dword(pdev, NV_MCP_SATA_CFG_20, &current_reg);
625
626 if(ap->port_no == 1)
627 config_mask = NV_MCP_SATA_CFG_20_PORT1_EN |
628 NV_MCP_SATA_CFG_20_PORT1_PWB_EN;
629 else
630 config_mask = NV_MCP_SATA_CFG_20_PORT0_EN |
631 NV_MCP_SATA_CFG_20_PORT0_PWB_EN;
f20b16ff 632
2dec7555
RH
633 if(adma_enable) {
634 new_reg = current_reg | config_mask;
635 pp->flags &= ~NV_ADMA_ATAPI_SETUP_COMPLETE;
636 }
637 else {
638 new_reg = current_reg & ~config_mask;
639 pp->flags |= NV_ADMA_ATAPI_SETUP_COMPLETE;
640 }
f20b16ff 641
2dec7555
RH
642 if(current_reg != new_reg)
643 pci_write_config_dword(pdev, NV_MCP_SATA_CFG_20, new_reg);
f20b16ff 644
fbbb262d
RH
645 blk_queue_bounce_limit(sdev->request_queue, bounce_limit);
646 blk_queue_segment_boundary(sdev->request_queue, segment_boundary);
647 blk_queue_max_hw_segments(sdev->request_queue, sg_tablesize);
648 ata_port_printk(ap, KERN_INFO,
649 "bounce limit 0x%llX, segment boundary 0x%lX, hw segs %hu\n",
650 (unsigned long long)bounce_limit, segment_boundary, sg_tablesize);
651 return rc;
652}
653
2dec7555
RH
654static int nv_adma_check_atapi_dma(struct ata_queued_cmd *qc)
655{
656 struct nv_adma_port_priv *pp = qc->ap->private_data;
657 return !(pp->flags & NV_ADMA_ATAPI_SETUP_COMPLETE);
658}
659
660static unsigned int nv_adma_tf_to_cpb(struct ata_taskfile *tf, __le16 *cpb)
fbbb262d
RH
661{
662 unsigned int idx = 0;
663
664 cpb[idx++] = cpu_to_le16((ATA_REG_DEVICE << 8) | tf->device | WNB);
665
666 if ((tf->flags & ATA_TFLAG_LBA48) == 0) {
667 cpb[idx++] = cpu_to_le16(IGN);
668 cpb[idx++] = cpu_to_le16(IGN);
669 cpb[idx++] = cpu_to_le16(IGN);
670 cpb[idx++] = cpu_to_le16(IGN);
671 cpb[idx++] = cpu_to_le16(IGN);
672 }
673 else {
674 cpb[idx++] = cpu_to_le16((ATA_REG_ERR << 8) | tf->hob_feature);
675 cpb[idx++] = cpu_to_le16((ATA_REG_NSECT << 8) | tf->hob_nsect);
676 cpb[idx++] = cpu_to_le16((ATA_REG_LBAL << 8) | tf->hob_lbal);
677 cpb[idx++] = cpu_to_le16((ATA_REG_LBAM << 8) | tf->hob_lbam);
678 cpb[idx++] = cpu_to_le16((ATA_REG_LBAH << 8) | tf->hob_lbah);
679 }
680 cpb[idx++] = cpu_to_le16((ATA_REG_ERR << 8) | tf->feature);
681 cpb[idx++] = cpu_to_le16((ATA_REG_NSECT << 8) | tf->nsect);
682 cpb[idx++] = cpu_to_le16((ATA_REG_LBAL << 8) | tf->lbal);
683 cpb[idx++] = cpu_to_le16((ATA_REG_LBAM << 8) | tf->lbam);
684 cpb[idx++] = cpu_to_le16((ATA_REG_LBAH << 8) | tf->lbah);
685
686 cpb[idx++] = cpu_to_le16((ATA_REG_CMD << 8) | tf->command | CMDEND);
687
688 return idx;
689}
690
5bd28a4b 691static int nv_adma_check_cpb(struct ata_port *ap, int cpb_num, int force_err)
fbbb262d
RH
692{
693 struct nv_adma_port_priv *pp = ap->private_data;
2dec7555 694 u8 flags = pp->cpb[cpb_num].resp_flags;
fbbb262d
RH
695
696 VPRINTK("CPB %d, flags=0x%x\n", cpb_num, flags);
697
5bd28a4b
RH
698 if (unlikely((force_err ||
699 flags & (NV_CPB_RESP_ATA_ERR |
700 NV_CPB_RESP_CMD_ERR |
701 NV_CPB_RESP_CPB_ERR)))) {
702 struct ata_eh_info *ehi = &ap->eh_info;
703 int freeze = 0;
704
705 ata_ehi_clear_desc(ehi);
706 ata_ehi_push_desc(ehi, "CPB resp_flags 0x%x", flags );
707 if (flags & NV_CPB_RESP_ATA_ERR) {
708 ata_ehi_push_desc(ehi, ": ATA error");
709 ehi->err_mask |= AC_ERR_DEV;
710 } else if (flags & NV_CPB_RESP_CMD_ERR) {
711 ata_ehi_push_desc(ehi, ": CMD error");
712 ehi->err_mask |= AC_ERR_DEV;
713 } else if (flags & NV_CPB_RESP_CPB_ERR) {
714 ata_ehi_push_desc(ehi, ": CPB error");
715 ehi->err_mask |= AC_ERR_SYSTEM;
716 freeze = 1;
717 } else {
718 /* notifier error, but no error in CPB flags? */
719 ehi->err_mask |= AC_ERR_OTHER;
720 freeze = 1;
721 }
722 /* Kill all commands. EH will determine what actually failed. */
723 if (freeze)
724 ata_port_freeze(ap);
725 else
726 ata_port_abort(ap);
727 return 1;
fbbb262d 728 }
5bd28a4b
RH
729
730 if (flags & NV_CPB_RESP_DONE) {
fbbb262d 731 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, cpb_num);
5bd28a4b
RH
732 VPRINTK("CPB flags done, flags=0x%x\n", flags);
733 if (likely(qc)) {
734 /* Grab the ATA port status for non-NCQ commands.
fbbb262d
RH
735 For NCQ commands the current status may have nothing to do with
736 the command just completed. */
5bd28a4b
RH
737 if (qc->tf.protocol != ATA_PROT_NCQ) {
738 u8 ata_status = readb(pp->ctl_block + (ATA_REG_STATUS * 4));
739 qc->err_mask |= ac_err_mask(ata_status);
740 }
fbbb262d
RH
741 DPRINTK("Completing qc from tag %d with err_mask %u\n",cpb_num,
742 qc->err_mask);
743 ata_qc_complete(qc);
744 }
745 }
5bd28a4b 746 return 0;
fbbb262d
RH
747}
748
2dec7555
RH
749static int nv_host_intr(struct ata_port *ap, u8 irq_stat)
750{
751 struct ata_queued_cmd *qc = ata_qc_from_tag(ap, ap->active_tag);
2dec7555
RH
752
753 /* freeze if hotplugged */
754 if (unlikely(irq_stat & (NV_INT_ADDED | NV_INT_REMOVED))) {
755 ata_port_freeze(ap);
756 return 1;
757 }
758
759 /* bail out if not our interrupt */
760 if (!(irq_stat & NV_INT_DEV))
761 return 0;
762
763 /* DEV interrupt w/ no active qc? */
764 if (unlikely(!qc || (qc->tf.flags & ATA_TFLAG_POLLING))) {
765 ata_check_status(ap);
766 return 1;
767 }
768
769 /* handle interrupt */
f740d168 770 return ata_host_intr(ap, qc);
2dec7555
RH
771}
772
fbbb262d
RH
773static irqreturn_t nv_adma_interrupt(int irq, void *dev_instance)
774{
775 struct ata_host *host = dev_instance;
776 int i, handled = 0;
2dec7555 777 u32 notifier_clears[2];
fbbb262d
RH
778
779 spin_lock(&host->lock);
780
781 for (i = 0; i < host->n_ports; i++) {
782 struct ata_port *ap = host->ports[i];
2dec7555 783 notifier_clears[i] = 0;
fbbb262d
RH
784
785 if (ap && !(ap->flags & ATA_FLAG_DISABLED)) {
786 struct nv_adma_port_priv *pp = ap->private_data;
cdf56bcf 787 void __iomem *mmio = pp->ctl_block;
fbbb262d
RH
788 u16 status;
789 u32 gen_ctl;
fbbb262d
RH
790 u32 notifier, notifier_error;
791
792 /* if in ATA register mode, use standard ata interrupt handler */
793 if (pp->flags & NV_ADMA_PORT_REGISTER_MODE) {
0d5ff566 794 u8 irq_stat = readb(host->iomap[NV_MMIO_BAR] + NV_INT_STATUS_CK804)
2dec7555 795 >> (NV_INT_PORT_SHIFT * i);
f740d168
RH
796 if(ata_tag_valid(ap->active_tag))
797 /** NV_INT_DEV indication seems unreliable at times
798 at least in ADMA mode. Force it on always when a
799 command is active, to prevent losing interrupts. */
800 irq_stat |= NV_INT_DEV;
2dec7555 801 handled += nv_host_intr(ap, irq_stat);
fbbb262d
RH
802 continue;
803 }
804
805 notifier = readl(mmio + NV_ADMA_NOTIFIER);
806 notifier_error = readl(mmio + NV_ADMA_NOTIFIER_ERROR);
2dec7555 807 notifier_clears[i] = notifier | notifier_error;
fbbb262d 808
cdf56bcf 809 gen_ctl = readl(pp->gen_block + NV_ADMA_GEN_CTL);
fbbb262d 810
fbbb262d
RH
811 if( !NV_ADMA_CHECK_INTR(gen_ctl, ap->port_no) && !notifier &&
812 !notifier_error)
813 /* Nothing to do */
814 continue;
815
816 status = readw(mmio + NV_ADMA_STAT);
817
818 /* Clear status. Ensure the controller sees the clearing before we start
819 looking at any of the CPB statuses, so that any CPB completions after
820 this point in the handler will raise another interrupt. */
821 writew(status, mmio + NV_ADMA_STAT);
822 readw(mmio + NV_ADMA_STAT); /* flush posted write */
823 rmb();
824
5bd28a4b
RH
825 handled++; /* irq handled if we got here */
826
827 /* freeze if hotplugged or controller error */
828 if (unlikely(status & (NV_ADMA_STAT_HOTPLUG |
829 NV_ADMA_STAT_HOTUNPLUG |
5278b50c
RH
830 NV_ADMA_STAT_TIMEOUT |
831 NV_ADMA_STAT_SERROR))) {
5bd28a4b
RH
832 struct ata_eh_info *ehi = &ap->eh_info;
833
834 ata_ehi_clear_desc(ehi);
835 ata_ehi_push_desc(ehi, "ADMA status 0x%08x", status );
836 if (status & NV_ADMA_STAT_TIMEOUT) {
837 ehi->err_mask |= AC_ERR_SYSTEM;
838 ata_ehi_push_desc(ehi, ": timeout");
839 } else if (status & NV_ADMA_STAT_HOTPLUG) {
840 ata_ehi_hotplugged(ehi);
841 ata_ehi_push_desc(ehi, ": hotplug");
842 } else if (status & NV_ADMA_STAT_HOTUNPLUG) {
843 ata_ehi_hotplugged(ehi);
844 ata_ehi_push_desc(ehi, ": hot unplug");
5278b50c
RH
845 } else if (status & NV_ADMA_STAT_SERROR) {
846 /* let libata analyze SError and figure out the cause */
847 ata_ehi_push_desc(ehi, ": SError");
5bd28a4b 848 }
fbbb262d 849 ata_port_freeze(ap);
fbbb262d
RH
850 continue;
851 }
852
5bd28a4b
RH
853 if (status & (NV_ADMA_STAT_DONE |
854 NV_ADMA_STAT_CPBERR)) {
fbbb262d
RH
855 /** Check CPBs for completed commands */
856
5bd28a4b 857 if (ata_tag_valid(ap->active_tag)) {
fbbb262d 858 /* Non-NCQ command */
5bd28a4b
RH
859 nv_adma_check_cpb(ap, ap->active_tag,
860 notifier_error & (1 << ap->active_tag));
861 } else {
862 int pos, error = 0;
fbbb262d 863 u32 active = ap->sactive;
5bd28a4b
RH
864
865 while ((pos = ffs(active)) && !error) {
fbbb262d 866 pos--;
5bd28a4b
RH
867 error = nv_adma_check_cpb(ap, pos,
868 notifier_error & (1 << pos) );
fbbb262d
RH
869 active &= ~(1 << pos );
870 }
871 }
872 }
fbbb262d
RH
873 }
874 }
f20b16ff 875
2dec7555
RH
876 if(notifier_clears[0] || notifier_clears[1]) {
877 /* Note: Both notifier clear registers must be written
878 if either is set, even if one is zero, according to NVIDIA. */
cdf56bcf
RH
879 struct nv_adma_port_priv *pp = host->ports[0]->private_data;
880 writel(notifier_clears[0], pp->notifier_clear_block);
881 pp = host->ports[1]->private_data;
882 writel(notifier_clears[1], pp->notifier_clear_block);
2dec7555 883 }
fbbb262d
RH
884
885 spin_unlock(&host->lock);
886
887 return IRQ_RETVAL(handled);
888}
889
890static void nv_adma_irq_clear(struct ata_port *ap)
891{
cdf56bcf
RH
892 struct nv_adma_port_priv *pp = ap->private_data;
893 void __iomem *mmio = pp->ctl_block;
fbbb262d
RH
894 u16 status = readw(mmio + NV_ADMA_STAT);
895 u32 notifier = readl(mmio + NV_ADMA_NOTIFIER);
896 u32 notifier_error = readl(mmio + NV_ADMA_NOTIFIER_ERROR);
0d5ff566 897 void __iomem *dma_stat_addr = ap->ioaddr.bmdma_addr + ATA_DMA_STATUS;
fbbb262d
RH
898
899 /* clear ADMA status */
900 writew(status, mmio + NV_ADMA_STAT);
901 writel(notifier | notifier_error,
cdf56bcf 902 pp->notifier_clear_block);
fbbb262d
RH
903
904 /** clear legacy status */
0d5ff566 905 iowrite8(ioread8(dma_stat_addr), dma_stat_addr);
fbbb262d
RH
906}
907
908static void nv_adma_bmdma_setup(struct ata_queued_cmd *qc)
909{
2dec7555
RH
910 struct ata_port *ap = qc->ap;
911 unsigned int rw = (qc->tf.flags & ATA_TFLAG_WRITE);
912 struct nv_adma_port_priv *pp = ap->private_data;
913 u8 dmactl;
fbbb262d 914
2dec7555 915 if(!(pp->flags & NV_ADMA_PORT_REGISTER_MODE)) {
fbbb262d
RH
916 WARN_ON(1);
917 return;
918 }
919
2dec7555 920 /* load PRD table addr. */
0d5ff566 921 iowrite32(ap->prd_dma, ap->ioaddr.bmdma_addr + ATA_DMA_TABLE_OFS);
2dec7555
RH
922
923 /* specify data direction, triple-check start bit is clear */
0d5ff566 924 dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2dec7555
RH
925 dmactl &= ~(ATA_DMA_WR | ATA_DMA_START);
926 if (!rw)
927 dmactl |= ATA_DMA_WR;
928
0d5ff566 929 iowrite8(dmactl, ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
2dec7555
RH
930
931 /* issue r/w command */
932 ata_exec_command(ap, &qc->tf);
fbbb262d
RH
933}
934
935static void nv_adma_bmdma_start(struct ata_queued_cmd *qc)
936{
2dec7555
RH
937 struct ata_port *ap = qc->ap;
938 struct nv_adma_port_priv *pp = ap->private_data;
939 u8 dmactl;
fbbb262d 940
2dec7555 941 if(!(pp->flags & NV_ADMA_PORT_REGISTER_MODE)) {
fbbb262d
RH
942 WARN_ON(1);
943 return;
944 }
945
2dec7555 946 /* start host DMA transaction */
0d5ff566
TH
947 dmactl = ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
948 iowrite8(dmactl | ATA_DMA_START,
949 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
fbbb262d
RH
950}
951
952static void nv_adma_bmdma_stop(struct ata_queued_cmd *qc)
953{
2dec7555 954 struct ata_port *ap = qc->ap;
fbbb262d
RH
955 struct nv_adma_port_priv *pp = ap->private_data;
956
2dec7555 957 if(!(pp->flags & NV_ADMA_PORT_REGISTER_MODE))
fbbb262d
RH
958 return;
959
2dec7555 960 /* clear start/stop bit */
0d5ff566
TH
961 iowrite8(ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_CMD) & ~ATA_DMA_START,
962 ap->ioaddr.bmdma_addr + ATA_DMA_CMD);
fbbb262d 963
2dec7555
RH
964 /* one-PIO-cycle guaranteed wait, per spec, for HDMA1:0 transition */
965 ata_altstatus(ap); /* dummy read */
fbbb262d
RH
966}
967
2dec7555 968static u8 nv_adma_bmdma_status(struct ata_port *ap)
fbbb262d 969{
fbbb262d 970 struct nv_adma_port_priv *pp = ap->private_data;
fbbb262d 971
2dec7555 972 WARN_ON(!(pp->flags & NV_ADMA_PORT_REGISTER_MODE));
fbbb262d 973
0d5ff566 974 return ioread8(ap->ioaddr.bmdma_addr + ATA_DMA_STATUS);
fbbb262d
RH
975}
976
977static int nv_adma_port_start(struct ata_port *ap)
978{
979 struct device *dev = ap->host->dev;
980 struct nv_adma_port_priv *pp;
981 int rc;
982 void *mem;
983 dma_addr_t mem_dma;
cdf56bcf 984 void __iomem *mmio;
fbbb262d
RH
985 u16 tmp;
986
987 VPRINTK("ENTER\n");
988
989 rc = ata_port_start(ap);
990 if (rc)
991 return rc;
992
24dc5f33
TH
993 pp = devm_kzalloc(dev, sizeof(*pp), GFP_KERNEL);
994 if (!pp)
995 return -ENOMEM;
fbbb262d 996
0d5ff566 997 mmio = ap->host->iomap[NV_MMIO_BAR] + NV_ADMA_PORT +
cdf56bcf
RH
998 ap->port_no * NV_ADMA_PORT_SIZE;
999 pp->ctl_block = mmio;
0d5ff566 1000 pp->gen_block = ap->host->iomap[NV_MMIO_BAR] + NV_ADMA_GEN;
cdf56bcf
RH
1001 pp->notifier_clear_block = pp->gen_block +
1002 NV_ADMA_NOTIFIER_CLEAR + (4 * ap->port_no);
1003
24dc5f33
TH
1004 mem = dmam_alloc_coherent(dev, NV_ADMA_PORT_PRIV_DMA_SZ,
1005 &mem_dma, GFP_KERNEL);
1006 if (!mem)
1007 return -ENOMEM;
fbbb262d
RH
1008 memset(mem, 0, NV_ADMA_PORT_PRIV_DMA_SZ);
1009
1010 /*
1011 * First item in chunk of DMA memory:
1012 * 128-byte command parameter block (CPB)
1013 * one for each command tag
1014 */
1015 pp->cpb = mem;
1016 pp->cpb_dma = mem_dma;
1017
1018 writel(mem_dma & 0xFFFFFFFF, mmio + NV_ADMA_CPB_BASE_LOW);
1019 writel((mem_dma >> 16 ) >> 16, mmio + NV_ADMA_CPB_BASE_HIGH);
1020
1021 mem += NV_ADMA_MAX_CPBS * NV_ADMA_CPB_SZ;
1022 mem_dma += NV_ADMA_MAX_CPBS * NV_ADMA_CPB_SZ;
1023
1024 /*
1025 * Second item: block of ADMA_SGTBL_LEN s/g entries
1026 */
1027 pp->aprd = mem;
1028 pp->aprd_dma = mem_dma;
1029
1030 ap->private_data = pp;
1031
1032 /* clear any outstanding interrupt conditions */
1033 writew(0xffff, mmio + NV_ADMA_STAT);
1034
1035 /* initialize port variables */
1036 pp->flags = NV_ADMA_PORT_REGISTER_MODE;
1037
1038 /* clear CPB fetch count */
1039 writew(0, mmio + NV_ADMA_CPB_COUNT);
1040
cdf56bcf 1041 /* clear GO for register mode, enable interrupt */
fbbb262d 1042 tmp = readw(mmio + NV_ADMA_CTL);
cdf56bcf 1043 writew( (tmp & ~NV_ADMA_CTL_GO) | NV_ADMA_CTL_AIEN, mmio + NV_ADMA_CTL);
fbbb262d
RH
1044
1045 tmp = readw(mmio + NV_ADMA_CTL);
1046 writew(tmp | NV_ADMA_CTL_CHANNEL_RESET, mmio + NV_ADMA_CTL);
1047 readl( mmio + NV_ADMA_CTL ); /* flush posted write */
1048 udelay(1);
1049 writew(tmp & ~NV_ADMA_CTL_CHANNEL_RESET, mmio + NV_ADMA_CTL);
1050 readl( mmio + NV_ADMA_CTL ); /* flush posted write */
1051
1052 return 0;
fbbb262d
RH
1053}
1054
1055static void nv_adma_port_stop(struct ata_port *ap)
1056{
fbbb262d 1057 struct nv_adma_port_priv *pp = ap->private_data;
cdf56bcf 1058 void __iomem *mmio = pp->ctl_block;
fbbb262d
RH
1059
1060 VPRINTK("ENTER\n");
fbbb262d 1061 writew(0, mmio + NV_ADMA_CTL);
fbbb262d
RH
1062}
1063
cdf56bcf
RH
1064static int nv_adma_port_suspend(struct ata_port *ap, pm_message_t mesg)
1065{
1066 struct nv_adma_port_priv *pp = ap->private_data;
1067 void __iomem *mmio = pp->ctl_block;
1068
1069 /* Go to register mode - clears GO */
1070 nv_adma_register_mode(ap);
1071
1072 /* clear CPB fetch count */
1073 writew(0, mmio + NV_ADMA_CPB_COUNT);
1074
1075 /* disable interrupt, shut down port */
1076 writew(0, mmio + NV_ADMA_CTL);
1077
1078 return 0;
1079}
1080
1081static int nv_adma_port_resume(struct ata_port *ap)
1082{
1083 struct nv_adma_port_priv *pp = ap->private_data;
1084 void __iomem *mmio = pp->ctl_block;
1085 u16 tmp;
1086
1087 /* set CPB block location */
1088 writel(pp->cpb_dma & 0xFFFFFFFF, mmio + NV_ADMA_CPB_BASE_LOW);
1089 writel((pp->cpb_dma >> 16 ) >> 16, mmio + NV_ADMA_CPB_BASE_HIGH);
1090
1091 /* clear any outstanding interrupt conditions */
1092 writew(0xffff, mmio + NV_ADMA_STAT);
1093
1094 /* initialize port variables */
1095 pp->flags |= NV_ADMA_PORT_REGISTER_MODE;
1096
1097 /* clear CPB fetch count */
1098 writew(0, mmio + NV_ADMA_CPB_COUNT);
1099
1100 /* clear GO for register mode, enable interrupt */
1101 tmp = readw(mmio + NV_ADMA_CTL);
1102 writew((tmp & ~NV_ADMA_CTL_GO) | NV_ADMA_CTL_AIEN, mmio + NV_ADMA_CTL);
1103
1104 tmp = readw(mmio + NV_ADMA_CTL);
1105 writew(tmp | NV_ADMA_CTL_CHANNEL_RESET, mmio + NV_ADMA_CTL);
1106 readl( mmio + NV_ADMA_CTL ); /* flush posted write */
1107 udelay(1);
1108 writew(tmp & ~NV_ADMA_CTL_CHANNEL_RESET, mmio + NV_ADMA_CTL);
1109 readl( mmio + NV_ADMA_CTL ); /* flush posted write */
1110
1111 return 0;
1112}
fbbb262d
RH
1113
1114static void nv_adma_setup_port(struct ata_probe_ent *probe_ent, unsigned int port)
1115{
0d5ff566 1116 void __iomem *mmio = probe_ent->iomap[NV_MMIO_BAR];
fbbb262d
RH
1117 struct ata_ioports *ioport = &probe_ent->port[port];
1118
1119 VPRINTK("ENTER\n");
1120
1121 mmio += NV_ADMA_PORT + port * NV_ADMA_PORT_SIZE;
1122
0d5ff566
TH
1123 ioport->cmd_addr = mmio;
1124 ioport->data_addr = mmio + (ATA_REG_DATA * 4);
fbbb262d 1125 ioport->error_addr =
0d5ff566
TH
1126 ioport->feature_addr = mmio + (ATA_REG_ERR * 4);
1127 ioport->nsect_addr = mmio + (ATA_REG_NSECT * 4);
1128 ioport->lbal_addr = mmio + (ATA_REG_LBAL * 4);
1129 ioport->lbam_addr = mmio + (ATA_REG_LBAM * 4);
1130 ioport->lbah_addr = mmio + (ATA_REG_LBAH * 4);
1131 ioport->device_addr = mmio + (ATA_REG_DEVICE * 4);
fbbb262d 1132 ioport->status_addr =
0d5ff566 1133 ioport->command_addr = mmio + (ATA_REG_STATUS * 4);
fbbb262d 1134 ioport->altstatus_addr =
0d5ff566 1135 ioport->ctl_addr = mmio + 0x20;
fbbb262d
RH
1136}
1137
1138static int nv_adma_host_init(struct ata_probe_ent *probe_ent)
1139{
1140 struct pci_dev *pdev = to_pci_dev(probe_ent->dev);
1141 unsigned int i;
1142 u32 tmp32;
1143
1144 VPRINTK("ENTER\n");
1145
1146 /* enable ADMA on the ports */
1147 pci_read_config_dword(pdev, NV_MCP_SATA_CFG_20, &tmp32);
1148 tmp32 |= NV_MCP_SATA_CFG_20_PORT0_EN |
1149 NV_MCP_SATA_CFG_20_PORT0_PWB_EN |
1150 NV_MCP_SATA_CFG_20_PORT1_EN |
1151 NV_MCP_SATA_CFG_20_PORT1_PWB_EN;
1152
1153 pci_write_config_dword(pdev, NV_MCP_SATA_CFG_20, tmp32);
1154
1155 for (i = 0; i < probe_ent->n_ports; i++)
1156 nv_adma_setup_port(probe_ent, i);
1157
fbbb262d
RH
1158 return 0;
1159}
1160
1161static void nv_adma_fill_aprd(struct ata_queued_cmd *qc,
1162 struct scatterlist *sg,
1163 int idx,
1164 struct nv_adma_prd *aprd)
1165{
2dec7555 1166 u8 flags;
fbbb262d
RH
1167
1168 memset(aprd, 0, sizeof(struct nv_adma_prd));
1169
1170 flags = 0;
1171 if (qc->tf.flags & ATA_TFLAG_WRITE)
1172 flags |= NV_APRD_WRITE;
1173 if (idx == qc->n_elem - 1)
1174 flags |= NV_APRD_END;
1175 else if (idx != 4)
1176 flags |= NV_APRD_CONT;
1177
1178 aprd->addr = cpu_to_le64(((u64)sg_dma_address(sg)));
1179 aprd->len = cpu_to_le32(((u32)sg_dma_len(sg))); /* len in bytes */
2dec7555 1180 aprd->flags = flags;
fbbb262d
RH
1181}
1182
1183static void nv_adma_fill_sg(struct ata_queued_cmd *qc, struct nv_adma_cpb *cpb)
1184{
1185 struct nv_adma_port_priv *pp = qc->ap->private_data;
1186 unsigned int idx;
1187 struct nv_adma_prd *aprd;
1188 struct scatterlist *sg;
1189
1190 VPRINTK("ENTER\n");
1191
1192 idx = 0;
1193
1194 ata_for_each_sg(sg, qc) {
1195 aprd = (idx < 5) ? &cpb->aprd[idx] : &pp->aprd[NV_ADMA_SGTBL_LEN * qc->tag + (idx-5)];
1196 nv_adma_fill_aprd(qc, sg, idx, aprd);
1197 idx++;
1198 }
1199 if (idx > 5)
1200 cpb->next_aprd = cpu_to_le64(((u64)(pp->aprd_dma + NV_ADMA_SGTBL_SZ * qc->tag)));
1201}
1202
382a6652
RH
1203static int nv_adma_use_reg_mode(struct ata_queued_cmd *qc)
1204{
1205 struct nv_adma_port_priv *pp = qc->ap->private_data;
1206
1207 /* ADMA engine can only be used for non-ATAPI DMA commands,
1208 or interrupt-driven no-data commands. */
1209 if((pp->flags & NV_ADMA_ATAPI_SETUP_COMPLETE) ||
1210 (qc->tf.flags & ATA_TFLAG_POLLING))
1211 return 1;
1212
1213 if((qc->flags & ATA_QCFLAG_DMAMAP) ||
1214 (qc->tf.protocol == ATA_PROT_NODATA))
1215 return 0;
1216
1217 return 1;
1218}
1219
fbbb262d
RH
1220static void nv_adma_qc_prep(struct ata_queued_cmd *qc)
1221{
1222 struct nv_adma_port_priv *pp = qc->ap->private_data;
1223 struct nv_adma_cpb *cpb = &pp->cpb[qc->tag];
1224 u8 ctl_flags = NV_CPB_CTL_CPB_VALID |
fbbb262d
RH
1225 NV_CPB_CTL_IEN;
1226
382a6652 1227 if (nv_adma_use_reg_mode(qc)) {
2dec7555 1228 nv_adma_register_mode(qc->ap);
fbbb262d
RH
1229 ata_qc_prep(qc);
1230 return;
1231 }
1232
1233 memset(cpb, 0, sizeof(struct nv_adma_cpb));
1234
1235 cpb->len = 3;
1236 cpb->tag = qc->tag;
1237 cpb->next_cpb_idx = 0;
1238
1239 /* turn on NCQ flags for NCQ commands */
1240 if (qc->tf.protocol == ATA_PROT_NCQ)
1241 ctl_flags |= NV_CPB_CTL_QUEUE | NV_CPB_CTL_FPDMA;
1242
cdf56bcf
RH
1243 VPRINTK("qc->flags = 0x%lx\n", qc->flags);
1244
fbbb262d
RH
1245 nv_adma_tf_to_cpb(&qc->tf, cpb->tf);
1246
382a6652
RH
1247 if(qc->flags & ATA_QCFLAG_DMAMAP) {
1248 nv_adma_fill_sg(qc, cpb);
1249 ctl_flags |= NV_CPB_CTL_APRD_VALID;
1250 } else
1251 memset(&cpb->aprd[0], 0, sizeof(struct nv_adma_prd) * 5);
fbbb262d
RH
1252
1253 /* Be paranoid and don't let the device see NV_CPB_CTL_CPB_VALID until we are
1254 finished filling in all of the contents */
1255 wmb();
1256 cpb->ctl_flags = ctl_flags;
1257}
1258
1259static unsigned int nv_adma_qc_issue(struct ata_queued_cmd *qc)
1260{
2dec7555 1261 struct nv_adma_port_priv *pp = qc->ap->private_data;
cdf56bcf 1262 void __iomem *mmio = pp->ctl_block;
fbbb262d
RH
1263
1264 VPRINTK("ENTER\n");
1265
382a6652 1266 if (nv_adma_use_reg_mode(qc)) {
fbbb262d 1267 /* use ATA register mode */
382a6652 1268 VPRINTK("using ATA register mode: 0x%lx\n", qc->flags);
fbbb262d
RH
1269 nv_adma_register_mode(qc->ap);
1270 return ata_qc_issue_prot(qc);
1271 } else
1272 nv_adma_mode(qc->ap);
1273
1274 /* write append register, command tag in lower 8 bits
1275 and (number of cpbs to append -1) in top 8 bits */
1276 wmb();
1277 writew(qc->tag, mmio + NV_ADMA_APPEND);
1278
1279 DPRINTK("Issued tag %u\n",qc->tag);
1280
1281 return 0;
1282}
1283
7d12e780 1284static irqreturn_t nv_generic_interrupt(int irq, void *dev_instance)
1da177e4 1285{
cca3974e 1286 struct ata_host *host = dev_instance;
1da177e4
LT
1287 unsigned int i;
1288 unsigned int handled = 0;
1289 unsigned long flags;
1290
cca3974e 1291 spin_lock_irqsave(&host->lock, flags);
1da177e4 1292
cca3974e 1293 for (i = 0; i < host->n_ports; i++) {
1da177e4
LT
1294 struct ata_port *ap;
1295
cca3974e 1296 ap = host->ports[i];
c1389503 1297 if (ap &&
029f5468 1298 !(ap->flags & ATA_FLAG_DISABLED)) {
1da177e4
LT
1299 struct ata_queued_cmd *qc;
1300
1301 qc = ata_qc_from_tag(ap, ap->active_tag);
e50362ec 1302 if (qc && (!(qc->tf.flags & ATA_TFLAG_POLLING)))
1da177e4 1303 handled += ata_host_intr(ap, qc);
b887030a
AC
1304 else
1305 // No request pending? Clear interrupt status
1306 // anyway, in case there's one pending.
1307 ap->ops->check_status(ap);
1da177e4
LT
1308 }
1309
1310 }
1311
cca3974e 1312 spin_unlock_irqrestore(&host->lock, flags);
1da177e4
LT
1313
1314 return IRQ_RETVAL(handled);
1315}
1316
cca3974e 1317static irqreturn_t nv_do_interrupt(struct ata_host *host, u8 irq_stat)
ada364e8
TH
1318{
1319 int i, handled = 0;
1320
cca3974e
JG
1321 for (i = 0; i < host->n_ports; i++) {
1322 struct ata_port *ap = host->ports[i];
ada364e8
TH
1323
1324 if (ap && !(ap->flags & ATA_FLAG_DISABLED))
1325 handled += nv_host_intr(ap, irq_stat);
1326
1327 irq_stat >>= NV_INT_PORT_SHIFT;
1328 }
1329
1330 return IRQ_RETVAL(handled);
1331}
1332
7d12e780 1333static irqreturn_t nv_nf2_interrupt(int irq, void *dev_instance)
ada364e8 1334{
cca3974e 1335 struct ata_host *host = dev_instance;
ada364e8
TH
1336 u8 irq_stat;
1337 irqreturn_t ret;
1338
cca3974e 1339 spin_lock(&host->lock);
0d5ff566 1340 irq_stat = ioread8(host->ports[0]->ioaddr.scr_addr + NV_INT_STATUS);
cca3974e
JG
1341 ret = nv_do_interrupt(host, irq_stat);
1342 spin_unlock(&host->lock);
ada364e8
TH
1343
1344 return ret;
1345}
1346
7d12e780 1347static irqreturn_t nv_ck804_interrupt(int irq, void *dev_instance)
ada364e8 1348{
cca3974e 1349 struct ata_host *host = dev_instance;
ada364e8
TH
1350 u8 irq_stat;
1351 irqreturn_t ret;
1352
cca3974e 1353 spin_lock(&host->lock);
0d5ff566 1354 irq_stat = readb(host->iomap[NV_MMIO_BAR] + NV_INT_STATUS_CK804);
cca3974e
JG
1355 ret = nv_do_interrupt(host, irq_stat);
1356 spin_unlock(&host->lock);
ada364e8
TH
1357
1358 return ret;
1359}
1360
1da177e4
LT
1361static u32 nv_scr_read (struct ata_port *ap, unsigned int sc_reg)
1362{
1da177e4
LT
1363 if (sc_reg > SCR_CONTROL)
1364 return 0xffffffffU;
1365
0d5ff566 1366 return ioread32(ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
1367}
1368
1369static void nv_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
1370{
1da177e4
LT
1371 if (sc_reg > SCR_CONTROL)
1372 return;
1373
0d5ff566 1374 iowrite32(val, ap->ioaddr.scr_addr + (sc_reg * 4));
1da177e4
LT
1375}
1376
39f87582
TH
1377static void nv_nf2_freeze(struct ata_port *ap)
1378{
0d5ff566 1379 void __iomem *scr_addr = ap->host->ports[0]->ioaddr.scr_addr;
39f87582
TH
1380 int shift = ap->port_no * NV_INT_PORT_SHIFT;
1381 u8 mask;
1382
0d5ff566 1383 mask = ioread8(scr_addr + NV_INT_ENABLE);
39f87582 1384 mask &= ~(NV_INT_ALL << shift);
0d5ff566 1385 iowrite8(mask, scr_addr + NV_INT_ENABLE);
39f87582
TH
1386}
1387
1388static void nv_nf2_thaw(struct ata_port *ap)
1389{
0d5ff566 1390 void __iomem *scr_addr = ap->host->ports[0]->ioaddr.scr_addr;
39f87582
TH
1391 int shift = ap->port_no * NV_INT_PORT_SHIFT;
1392 u8 mask;
1393
0d5ff566 1394 iowrite8(NV_INT_ALL << shift, scr_addr + NV_INT_STATUS);
39f87582 1395
0d5ff566 1396 mask = ioread8(scr_addr + NV_INT_ENABLE);
39f87582 1397 mask |= (NV_INT_MASK << shift);
0d5ff566 1398 iowrite8(mask, scr_addr + NV_INT_ENABLE);
39f87582
TH
1399}
1400
1401static void nv_ck804_freeze(struct ata_port *ap)
1402{
0d5ff566 1403 void __iomem *mmio_base = ap->host->iomap[NV_MMIO_BAR];
39f87582
TH
1404 int shift = ap->port_no * NV_INT_PORT_SHIFT;
1405 u8 mask;
1406
1407 mask = readb(mmio_base + NV_INT_ENABLE_CK804);
1408 mask &= ~(NV_INT_ALL << shift);
1409 writeb(mask, mmio_base + NV_INT_ENABLE_CK804);
1410}
1411
1412static void nv_ck804_thaw(struct ata_port *ap)
1413{
0d5ff566 1414 void __iomem *mmio_base = ap->host->iomap[NV_MMIO_BAR];
39f87582
TH
1415 int shift = ap->port_no * NV_INT_PORT_SHIFT;
1416 u8 mask;
1417
1418 writeb(NV_INT_ALL << shift, mmio_base + NV_INT_STATUS_CK804);
1419
1420 mask = readb(mmio_base + NV_INT_ENABLE_CK804);
1421 mask |= (NV_INT_MASK << shift);
1422 writeb(mask, mmio_base + NV_INT_ENABLE_CK804);
1423}
1424
1425static int nv_hardreset(struct ata_port *ap, unsigned int *class)
1426{
1427 unsigned int dummy;
1428
1429 /* SATA hardreset fails to retrieve proper device signature on
1430 * some controllers. Don't classify on hardreset. For more
1431 * info, see http://bugme.osdl.org/show_bug.cgi?id=3352
1432 */
1433 return sata_std_hardreset(ap, &dummy);
1434}
1435
1436static void nv_error_handler(struct ata_port *ap)
1437{
1438 ata_bmdma_drive_eh(ap, ata_std_prereset, ata_std_softreset,
1439 nv_hardreset, ata_std_postreset);
1440}
1441
fbbb262d
RH
1442static void nv_adma_error_handler(struct ata_port *ap)
1443{
1444 struct nv_adma_port_priv *pp = ap->private_data;
1445 if(!(pp->flags & NV_ADMA_PORT_REGISTER_MODE)) {
cdf56bcf 1446 void __iomem *mmio = pp->ctl_block;
fbbb262d
RH
1447 int i;
1448 u16 tmp;
1449
fbbb262d
RH
1450 /* Push us back into port register mode for error handling. */
1451 nv_adma_register_mode(ap);
1452
fbbb262d
RH
1453 /* Mark all of the CPBs as invalid to prevent them from being executed */
1454 for( i=0;i<NV_ADMA_MAX_CPBS;i++)
1455 pp->cpb[i].ctl_flags &= ~NV_CPB_CTL_CPB_VALID;
1456
1457 /* clear CPB fetch count */
1458 writew(0, mmio + NV_ADMA_CPB_COUNT);
1459
1460 /* Reset channel */
1461 tmp = readw(mmio + NV_ADMA_CTL);
1462 writew(tmp | NV_ADMA_CTL_CHANNEL_RESET, mmio + NV_ADMA_CTL);
1463 readl( mmio + NV_ADMA_CTL ); /* flush posted write */
1464 udelay(1);
1465 writew(tmp & ~NV_ADMA_CTL_CHANNEL_RESET, mmio + NV_ADMA_CTL);
1466 readl( mmio + NV_ADMA_CTL ); /* flush posted write */
1467 }
1468
1469 ata_bmdma_drive_eh(ap, ata_std_prereset, ata_std_softreset,
1470 nv_hardreset, ata_std_postreset);
1471}
1472
1da177e4
LT
1473static int nv_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
1474{
1475 static int printed_version = 0;
29da9f6d 1476 struct ata_port_info *ppi[2];
1da177e4 1477 struct ata_probe_ent *probe_ent;
cdf56bcf 1478 struct nv_host_priv *hpriv;
1da177e4
LT
1479 int rc;
1480 u32 bar;
0d5ff566 1481 void __iomem *base;
fbbb262d
RH
1482 unsigned long type = ent->driver_data;
1483 int mask_set = 0;
1da177e4
LT
1484
1485 // Make sure this is a SATA controller by counting the number of bars
1486 // (NVIDIA SATA controllers will always have six bars). Otherwise,
1487 // it's an IDE controller and we ignore it.
1488 for (bar=0; bar<6; bar++)
1489 if (pci_resource_start(pdev, bar) == 0)
1490 return -ENODEV;
1491
cdf56bcf 1492 if (!printed_version++)
a9524a76 1493 dev_printk(KERN_DEBUG, &pdev->dev, "version " DRV_VERSION "\n");
1da177e4 1494
24dc5f33 1495 rc = pcim_enable_device(pdev);
1da177e4 1496 if (rc)
24dc5f33 1497 return rc;
1da177e4
LT
1498
1499 rc = pci_request_regions(pdev, DRV_NAME);
1500 if (rc) {
24dc5f33
TH
1501 pcim_pin_device(pdev);
1502 return rc;
1da177e4
LT
1503 }
1504
fbbb262d
RH
1505 if(type >= CK804 && adma_enabled) {
1506 dev_printk(KERN_NOTICE, &pdev->dev, "Using ADMA mode\n");
1507 type = ADMA;
1508 if(!pci_set_dma_mask(pdev, DMA_64BIT_MASK) &&
1509 !pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK))
1510 mask_set = 1;
1511 }
1512
1513 if(!mask_set) {
1514 rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
1515 if (rc)
24dc5f33 1516 return rc;
fbbb262d
RH
1517 rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
1518 if (rc)
24dc5f33 1519 return rc;
fbbb262d 1520 }
1da177e4
LT
1521
1522 rc = -ENOMEM;
1523
24dc5f33 1524 hpriv = devm_kzalloc(&pdev->dev, sizeof(*hpriv), GFP_KERNEL);
cdf56bcf 1525 if (!hpriv)
24dc5f33 1526 return -ENOMEM;
cdf56bcf 1527
fbbb262d 1528 ppi[0] = ppi[1] = &nv_port_info[type];
29da9f6d 1529 probe_ent = ata_pci_init_native_mode(pdev, ppi, ATA_PORT_PRIMARY | ATA_PORT_SECONDARY);
1da177e4 1530 if (!probe_ent)
24dc5f33
TH
1531 return -ENOMEM;
1532
0d5ff566 1533 if (!pcim_iomap(pdev, NV_MMIO_BAR, 0))
24dc5f33 1534 return -EIO;
0d5ff566 1535 probe_ent->iomap = pcim_iomap_table(pdev);
1da177e4 1536
cdf56bcf
RH
1537 probe_ent->private_data = hpriv;
1538 hpriv->type = type;
1da177e4 1539
0d5ff566 1540 base = probe_ent->iomap[NV_MMIO_BAR];
02cbd926
JG
1541 probe_ent->port[0].scr_addr = base + NV_PORT0_SCR_REG_OFFSET;
1542 probe_ent->port[1].scr_addr = base + NV_PORT1_SCR_REG_OFFSET;
1da177e4 1543
ada364e8 1544 /* enable SATA space for CK804 */
fbbb262d 1545 if (type >= CK804) {
ada364e8
TH
1546 u8 regval;
1547
1548 pci_read_config_byte(pdev, NV_MCP_SATA_CFG_20, &regval);
1549 regval |= NV_MCP_SATA_CFG_20_SATA_SPACE_EN;
1550 pci_write_config_byte(pdev, NV_MCP_SATA_CFG_20, regval);
1551 }
1552
1da177e4
LT
1553 pci_set_master(pdev);
1554
fbbb262d
RH
1555 if (type == ADMA) {
1556 rc = nv_adma_host_init(probe_ent);
1557 if (rc)
24dc5f33 1558 return rc;
fbbb262d
RH
1559 }
1560
1da177e4
LT
1561 rc = ata_device_add(probe_ent);
1562 if (rc != NV_PORTS)
24dc5f33 1563 return -ENODEV;
1da177e4 1564
24dc5f33 1565 devm_kfree(&pdev->dev, probe_ent);
1da177e4 1566 return 0;
1da177e4
LT
1567}
1568
cdf56bcf
RH
1569static void nv_remove_one (struct pci_dev *pdev)
1570{
1571 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1572 struct nv_host_priv *hpriv = host->private_data;
1573
1574 ata_pci_remove_one(pdev);
1575 kfree(hpriv);
1576}
1577
1578static int nv_pci_device_resume(struct pci_dev *pdev)
1579{
1580 struct ata_host *host = dev_get_drvdata(&pdev->dev);
1581 struct nv_host_priv *hpriv = host->private_data;
ce053fa8 1582 int rc;
cdf56bcf 1583
ce053fa8
RH
1584 rc = ata_pci_device_do_resume(pdev);
1585 if(rc)
1586 return rc;
cdf56bcf
RH
1587
1588 if (pdev->dev.power.power_state.event == PM_EVENT_SUSPEND) {
1589 if(hpriv->type >= CK804) {
1590 u8 regval;
1591
1592 pci_read_config_byte(pdev, NV_MCP_SATA_CFG_20, &regval);
1593 regval |= NV_MCP_SATA_CFG_20_SATA_SPACE_EN;
1594 pci_write_config_byte(pdev, NV_MCP_SATA_CFG_20, regval);
1595 }
1596 if(hpriv->type == ADMA) {
1597 u32 tmp32;
1598 struct nv_adma_port_priv *pp;
1599 /* enable/disable ADMA on the ports appropriately */
1600 pci_read_config_dword(pdev, NV_MCP_SATA_CFG_20, &tmp32);
1601
1602 pp = host->ports[0]->private_data;
1603 if(pp->flags & NV_ADMA_ATAPI_SETUP_COMPLETE)
1604 tmp32 &= ~(NV_MCP_SATA_CFG_20_PORT0_EN |
1605 NV_MCP_SATA_CFG_20_PORT0_PWB_EN);
1606 else
1607 tmp32 |= (NV_MCP_SATA_CFG_20_PORT0_EN |
1608 NV_MCP_SATA_CFG_20_PORT0_PWB_EN);
1609 pp = host->ports[1]->private_data;
1610 if(pp->flags & NV_ADMA_ATAPI_SETUP_COMPLETE)
1611 tmp32 &= ~(NV_MCP_SATA_CFG_20_PORT1_EN |
1612 NV_MCP_SATA_CFG_20_PORT1_PWB_EN);
1613 else
1614 tmp32 |= (NV_MCP_SATA_CFG_20_PORT1_EN |
1615 NV_MCP_SATA_CFG_20_PORT1_PWB_EN);
1616
1617 pci_write_config_dword(pdev, NV_MCP_SATA_CFG_20, tmp32);
1618 }
1619 }
1620
1621 ata_host_resume(host);
1622
1623 return 0;
1624}
1625
cca3974e 1626static void nv_ck804_host_stop(struct ata_host *host)
ada364e8 1627{
cca3974e 1628 struct pci_dev *pdev = to_pci_dev(host->dev);
ada364e8
TH
1629 u8 regval;
1630
1631 /* disable SATA space for CK804 */
1632 pci_read_config_byte(pdev, NV_MCP_SATA_CFG_20, &regval);
1633 regval &= ~NV_MCP_SATA_CFG_20_SATA_SPACE_EN;
1634 pci_write_config_byte(pdev, NV_MCP_SATA_CFG_20, regval);
ada364e8
TH
1635}
1636
fbbb262d
RH
1637static void nv_adma_host_stop(struct ata_host *host)
1638{
1639 struct pci_dev *pdev = to_pci_dev(host->dev);
fbbb262d
RH
1640 u32 tmp32;
1641
fbbb262d
RH
1642 /* disable ADMA on the ports */
1643 pci_read_config_dword(pdev, NV_MCP_SATA_CFG_20, &tmp32);
1644 tmp32 &= ~(NV_MCP_SATA_CFG_20_PORT0_EN |
1645 NV_MCP_SATA_CFG_20_PORT0_PWB_EN |
1646 NV_MCP_SATA_CFG_20_PORT1_EN |
1647 NV_MCP_SATA_CFG_20_PORT1_PWB_EN);
1648
1649 pci_write_config_dword(pdev, NV_MCP_SATA_CFG_20, tmp32);
1650
1651 nv_ck804_host_stop(host);
1652}
1653
1da177e4
LT
1654static int __init nv_init(void)
1655{
b7887196 1656 return pci_register_driver(&nv_pci_driver);
1da177e4
LT
1657}
1658
1659static void __exit nv_exit(void)
1660{
1661 pci_unregister_driver(&nv_pci_driver);
1662}
1663
1664module_init(nv_init);
1665module_exit(nv_exit);
fbbb262d
RH
1666module_param_named(adma, adma_enabled, bool, 0444);
1667MODULE_PARM_DESC(adma, "Enable use of ADMA (Default: true)");