summaryrefslogtreecommitdiffstats
path: root/sys/dev/ata
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2010-07-10 13:46:14 +0000
committermav <mav@FreeBSD.org>2010-07-10 13:46:14 +0000
commit20380dbd90760a2188c8fe4320e393f5dc418c6e (patch)
tree97342bd7bcb3edb85f5512f4dde10244d7f665aa /sys/dev/ata
parent18ad9f5070b6ca49d00638a62f32dda2ffc3b369 (diff)
downloadFreeBSD-src-20380dbd90760a2188c8fe4320e393f5dc418c6e.zip
FreeBSD-src-20380dbd90760a2188c8fe4320e393f5dc418c6e.tar.gz
Make hw.ata.ata_dma_check_80pin tunable affect not only device side, but
also controller side cable checks. Make respective sysctl writable. PR: kern/143462
Diffstat (limited to 'sys/dev/ata')
-rw-r--r--sys/dev/ata/ata-all.c2
-rw-r--r--sys/dev/ata/chipsets/ata-acerlabs.c2
-rw-r--r--sys/dev/ata/chipsets/ata-amd.c2
-rw-r--r--sys/dev/ata/chipsets/ata-highpoint.c2
-rw-r--r--sys/dev/ata/chipsets/ata-intel.c3
-rw-r--r--sys/dev/ata/chipsets/ata-ite.c6
-rw-r--r--sys/dev/ata/chipsets/ata-jmicron.c3
-rw-r--r--sys/dev/ata/chipsets/ata-marvell.c3
-rw-r--r--sys/dev/ata/chipsets/ata-promise.c7
-rw-r--r--sys/dev/ata/chipsets/ata-siliconimage.c3
-rw-r--r--sys/dev/ata/chipsets/ata-sis.c4
11 files changed, 22 insertions, 15 deletions
diff --git a/sys/dev/ata/ata-all.c b/sys/dev/ata/ata-all.c
index fabbacd..e9f1082 100644
--- a/sys/dev/ata/ata-all.c
+++ b/sys/dev/ata/ata-all.c
@@ -105,7 +105,7 @@ SYSCTL_INT(_hw_ata, OID_AUTO, ata_dma, CTLFLAG_RDTUN, &ata_dma, 0,
"ATA disk DMA mode control");
TUNABLE_INT("hw.ata.ata_dma_check_80pin", &ata_dma_check_80pin);
SYSCTL_INT(_hw_ata, OID_AUTO, ata_dma_check_80pin,
- CTLFLAG_RDTUN, &ata_dma_check_80pin, 1,
+ CTLFLAG_RW, &ata_dma_check_80pin, 1,
"Check for 80pin cable before setting ATA DMA mode");
TUNABLE_INT("hw.ata.atapi_dma", &atapi_dma);
SYSCTL_INT(_hw_ata, OID_AUTO, atapi_dma, CTLFLAG_RDTUN, &atapi_dma, 0,
diff --git a/sys/dev/ata/chipsets/ata-acerlabs.c b/sys/dev/ata/chipsets/ata-acerlabs.c
index 791dea8..79e9d11 100644
--- a/sys/dev/ata/chipsets/ata-acerlabs.c
+++ b/sys/dev/ata/chipsets/ata-acerlabs.c
@@ -286,7 +286,7 @@ ata_ali_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
if (ctlr->chip->cfg2 & ALI_NEW && ctlr->chip->chiprev < 0xc7) {
- if (mode > ATA_UDMA2 &&
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
pci_read_config(parent, 0x4a, 1) & (1 << ch->unit)) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
diff --git a/sys/dev/ata/chipsets/ata-amd.c b/sys/dev/ata/chipsets/ata-amd.c
index 589ffa0..e7038a3 100644
--- a/sys/dev/ata/chipsets/ata-amd.c
+++ b/sys/dev/ata/chipsets/ata-amd.c
@@ -119,7 +119,7 @@ ata_amd_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
if (ctlr->chip->cfg1 & AMD_CABLE) {
- if (mode > ATA_UDMA2 &&
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
!(pci_read_config(parent, 0x42, 1) & (1 << devno))) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
diff --git a/sys/dev/ata/chipsets/ata-highpoint.c b/sys/dev/ata/chipsets/ata-highpoint.c
index 511366a..365128f 100644
--- a/sys/dev/ata/chipsets/ata-highpoint.c
+++ b/sys/dev/ata/chipsets/ata-highpoint.c
@@ -216,7 +216,7 @@ ata_highpoint_check_80pin(device_t dev, int mode)
res = pci_read_config(parent, 0x5a, 1) & (ch->unit ? 0x1:0x2);
pci_write_config(parent, reg, val, 1);
- if (mode > ATA_UDMA2 && res) {
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 && res) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
}
diff --git a/sys/dev/ata/chipsets/ata-intel.c b/sys/dev/ata/chipsets/ata-intel.c
index 567fb44..02cd6e0 100644
--- a/sys/dev/ata/chipsets/ata-intel.c
+++ b/sys/dev/ata/chipsets/ata-intel.c
@@ -336,7 +336,8 @@ ata_intel_new_setmode(device_t dev, int target, int mode)
u_int8_t utimings[] = { 0x00, 0x01, 0x02, 0x01, 0x02, 0x01, 0x02 };
mode = min(mode, ctlr->chip->max_dma);
- if (mode > ATA_UDMA2 && !(reg54 & (0x10 << devno))) {
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
+ !(reg54 & (0x10 << devno))) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
}
diff --git a/sys/dev/ata/chipsets/ata-ite.c b/sys/dev/ata/chipsets/ata-ite.c
index 8c0a2c5..c1cfe9a 100644
--- a/sys/dev/ata/chipsets/ata-ite.c
+++ b/sys/dev/ata/chipsets/ata-ite.c
@@ -139,7 +139,8 @@ ata_ite_821x_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
/* check the CBLID bits for 80 conductor cable detection */
- if (mode > ATA_UDMA2 && (pci_read_config(parent, 0x40, 2) &
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
+ (pci_read_config(parent, 0x40, 2) &
(ch->unit ? (1<<3) : (1<<2)))) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
@@ -186,7 +187,8 @@ ata_ite_8213_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
- if (mode > ATA_UDMA2 && !(reg54 & (0x10 << target))) {
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
+ !(reg54 & (0x10 << target))) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
}
diff --git a/sys/dev/ata/chipsets/ata-jmicron.c b/sys/dev/ata/chipsets/ata-jmicron.c
index 13524f1..8d2124f 100644
--- a/sys/dev/ata/chipsets/ata-jmicron.c
+++ b/sys/dev/ata/chipsets/ata-jmicron.c
@@ -149,7 +149,8 @@ ata_jmicron_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
/* check for 80pin cable present */
- if (mode > ATA_UDMA2 && pci_read_config(dev, 0x40, 1) & 0x08) {
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
+ pci_read_config(dev, 0x40, 1) & 0x08) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
}
diff --git a/sys/dev/ata/chipsets/ata-marvell.c b/sys/dev/ata/chipsets/ata-marvell.c
index 8b8c004..725f971 100644
--- a/sys/dev/ata/chipsets/ata-marvell.c
+++ b/sys/dev/ata/chipsets/ata-marvell.c
@@ -188,7 +188,8 @@ ata_marvell_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
/* Check for 80pin cable present. */
- if (mode > ATA_UDMA2 && ATA_IDX_INB(ch, ATA_BMDEVSPEC_0) & 0x01) {
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
+ ATA_IDX_INB(ch, ATA_BMDEVSPEC_0) & 0x01) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
}
diff --git a/sys/dev/ata/chipsets/ata-promise.c b/sys/dev/ata/chipsets/ata-promise.c
index 3054552..73dc46e 100644
--- a/sys/dev/ata/chipsets/ata-promise.c
+++ b/sys/dev/ata/chipsets/ata-promise.c
@@ -470,7 +470,8 @@ ata_promise_setmode(device_t dev, int target, int mode)
switch (ctlr->chip->cfg1) {
case PR_OLD:
case PR_NEW:
- if (mode > ATA_UDMA2 && (pci_read_config(parent, 0x50, 2) &
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
+ (pci_read_config(parent, 0x50, 2) &
(ch->unit ? 1 << 11 : 1 << 10))) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
@@ -479,7 +480,7 @@ ata_promise_setmode(device_t dev, int target, int mode)
case PR_TX:
ATA_IDX_OUTB(ch, ATA_BMDEVSPEC_0, 0x0b);
- if (mode > ATA_UDMA2 &&
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
ATA_IDX_INB(ch, ATA_BMDEVSPEC_1) & 0x04) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
@@ -487,7 +488,7 @@ ata_promise_setmode(device_t dev, int target, int mode)
break;
case PR_MIO:
- if (mode > ATA_UDMA2 &&
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
(ATA_INL(ctlr->r_res2,
(ctlr->chip->cfg2 & PR_SX4X ? 0x000c0260 : 0x0260) +
(ch->unit << 7)) & 0x01000000)) {
diff --git a/sys/dev/ata/chipsets/ata-siliconimage.c b/sys/dev/ata/chipsets/ata-siliconimage.c
index 081bee5..48c9565 100644
--- a/sys/dev/ata/chipsets/ata-siliconimage.c
+++ b/sys/dev/ata/chipsets/ata-siliconimage.c
@@ -389,7 +389,8 @@ ata_sii_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
if (ctlr->chip->cfg2 & SII_SETCLK) {
- if (mode > ATA_UDMA2 && (pci_read_config(parent, 0x79, 1) &
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
+ (pci_read_config(parent, 0x79, 1) &
(ch->unit ? 0x02 : 0x01))) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
diff --git a/sys/dev/ata/chipsets/ata-sis.c b/sys/dev/ata/chipsets/ata-sis.c
index 8022505..b89e9e0 100644
--- a/sys/dev/ata/chipsets/ata-sis.c
+++ b/sys/dev/ata/chipsets/ata-sis.c
@@ -243,13 +243,13 @@ ata_sis_setmode(device_t dev, int target, int mode)
mode = min(mode, ctlr->chip->max_dma);
if (ctlr->chip->cfg1 == SIS_133NEW) {
- if (mode > ATA_UDMA2 &&
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
pci_read_config(parent, ch->unit ? 0x52 : 0x50,2) & 0x8000) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
}
} else {
- if (mode > ATA_UDMA2 &&
+ if (ata_dma_check_80pin && mode > ATA_UDMA2 &&
pci_read_config(parent, 0x48, 1)&(ch->unit ? 0x20 : 0x10)) {
ata_print_cable(dev, "controller");
mode = ATA_UDMA2;
OpenPOWER on IntegriCloud