diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-04-26 15:15:47 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2006-04-26 15:15:47 +0000 |
commit | e2e3e055db6886fef780ff2001cdf82f881d6dac (patch) | |
tree | 3d99506d514351564013451cc4e5005adf2fa14a | |
parent | 025b510f7327d1e852fc95fc541694b89c03624e (diff) |
ATI IXP 600 IDE. Hardware is not generally available yet
but should work going by Linux driver.
-rw-r--r-- | share/man/man4/pciide.4 | 4 | ||||
-rw-r--r-- | sys/dev/pci/pciide.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/share/man/man4/pciide.4 b/share/man/man4/pciide.4 index 29f6bc80001..dd119f455c9 100644 --- a/share/man/man4/pciide.4 +++ b/share/man/man4/pciide.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: pciide.4,v 1.61 2006/04/17 01:51:37 jsg Exp $ +.\" $OpenBSD: pciide.4,v 1.62 2006/04/26 15:15:46 jsg Exp $ .\" $NetBSD: pciide.4,v 1.8 1999/03/16 01:19:17 garbled Exp $ .\" .\" Copyright (c) 1998 Manuel Bouyer. @@ -72,7 +72,7 @@ Adaptec AAR-1210SA .It Advanced Micro Devices AMD-756, AMD-766, AMD-768, AMD-8111 .It -ATI IXP 200, IXP 300, IXP 400 +ATI IXP 200, IXP 300, IXP 400, IXP 600 (IDE only) .It CMD Tech PCI0640, PCI0643, PCI0646, PCI0648, PCI0649, PCI0680 .It diff --git a/sys/dev/pci/pciide.c b/sys/dev/pci/pciide.c index fbf86d4fac6..da679faed87 100644 --- a/sys/dev/pci/pciide.c +++ b/sys/dev/pci/pciide.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pciide.c,v 1.236 2006/04/25 09:09:42 jsg Exp $ */ +/* $OpenBSD: pciide.c,v 1.237 2006/04/26 15:15:46 jsg Exp $ */ /* $NetBSD: pciide.c,v 1.127 2001/08/03 01:31:08 tsutsui Exp $ */ /* @@ -889,6 +889,10 @@ const struct pciide_product_desc pciide_ati_products[] = { { PCI_PRODUCT_ATI_IXP_SATA_400_2, IDE_PCI_CLASS_OVERRIDE, sii3112_chip_map + }, + { PCI_PRODUCT_ATI_IXP_IDE_600, + 0, + ixp_chip_map } }; |