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