diff options
-rw-r--r-- | sys/dev/ata/ata-dma.c | 1 | ||||
-rw-r--r-- | sys/dev/ata/ata-pci.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/sys/dev/ata/ata-dma.c b/sys/dev/ata/ata-dma.c index 5104a05..a8671a1 100644 --- a/sys/dev/ata/ata-dma.c +++ b/sys/dev/ata/ata-dma.c @@ -969,6 +969,7 @@ via_82c586: break; case 0x4d69105a: /* Promise TX2 ATA133 controllers */ + case 0x5275105a: /* Promise TX2 ATA133 controllers */ ATA_OUTB(atadev->channel->r_bmio, ATA_BMDEVSPEC_0, 0x0b); if (udmamode >= 6 && !(ATA_INB(atadev->channel->r_bmio, ATA_BMDEVSPEC_1) & 0x04)) { diff --git a/sys/dev/ata/ata-pci.c b/sys/dev/ata/ata-pci.c index 8e06b3c..9e64eed 100644 --- a/sys/dev/ata/ata-pci.c +++ b/sys/dev/ata/ata-pci.c @@ -269,6 +269,7 @@ ata_pci_match(device_t dev) return "Promise TX2 ATA100 controller"; case 0x4d69105a: + case 0x5275105a: return "Promise TX2 ATA133 controller"; case 0x00041103: @@ -570,6 +571,7 @@ ata_pci_intr(struct ata_channel *ch) case 0x4d68105a: /* Promise TX2 ATA100 */ case 0x6268105a: /* Promise TX2 ATA100 */ case 0x4d69105a: /* Promise TX2 ATA133 */ + case 0x5275105a: /* Promise TX2 ATA133 */ ATA_OUTB(ch->r_bmio, ATA_BMDEVSPEC_0, 0x0b); if (!(ATA_INB(ch->r_bmio, ATA_BMDEVSPEC_1) & 0x20)) return 1; |