diff options
author | Robert Hancock <hancockr@shaw.ca> | 2006-10-27 22:08:41 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2006-12-01 22:40:27 -0500 |
commit | fbbb262d9ea9bdbd79d7058271560e9990bc62d3 (patch) | |
tree | 533ec01bf945518c99e71ec2b32c5fb426ab812a /drivers/ata/libata-sff.c | |
parent | 6e9d8629b5503175a4425722a1ef13eed232c650 (diff) |
[PATCH] sata_nv ADMA/NCQ support for nForce4
This patch adds support for ADMA mode on NVIDIA nForce4 (CK804/MCP04) SATA
controllers to the sata_nv driver. Benefits of ADMA mode include:
- NCQ support
- Reduced CPU overhead (controller DMAs command information from memory
instead of them being pushed in by the CPU)
- Full 64-bit DMA support
ADMA mode is enabled by default in this version. To disable it, set the
module parameter adma_enabled=0.
Signed-off-by: Robert Hancock <hancockr@shaw.ca>
Cc: Jeff Garzik <jeff@garzik.org>
Cc: Tejun Heo <htejun@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/ata/libata-sff.c')
-rw-r--r-- | drivers/ata/libata-sff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ata/libata-sff.c b/drivers/ata/libata-sff.c index 7645f2b30ccf..e178d6ae8b80 100644 --- a/drivers/ata/libata-sff.c +++ b/drivers/ata/libata-sff.c | |||
@@ -732,7 +732,7 @@ void ata_bmdma_drive_eh(struct ata_port *ap, ata_prereset_fn_t prereset, | |||
732 | qc->tf.protocol == ATA_PROT_ATAPI_DMA)) { | 732 | qc->tf.protocol == ATA_PROT_ATAPI_DMA)) { |
733 | u8 host_stat; | 733 | u8 host_stat; |
734 | 734 | ||
735 | host_stat = ata_bmdma_status(ap); | 735 | host_stat = ap->ops->bmdma_status(ap); |
736 | 736 | ||
737 | ata_ehi_push_desc(&ehc->i, "BMDMA stat 0x%x", host_stat); | 737 | ata_ehi_push_desc(&ehc->i, "BMDMA stat 0x%x", host_stat); |
738 | 738 | ||