DragonFly BSD
DragonFly kernel List (threaded) for 2006-03
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

Re: Intel Core Duo vs. DragonFly 1.5.1 (possible SATA related)


From: Matthew Dillon <dillon@xxxxxxxxxxxxxxxxxxxx>
Date: Mon, 27 Mar 2006 07:58:24 -0800 (PST)

    I think this will do the job for DragonFly, but we need to test it
    somehow and that will require burning a new CD.  At the moment the
    installer in HEAD has a memory allocator issue so it isn't entirely
    straightforward.

						-Matt

Index: ata-dma.c
===================================================================
RCS file: /cvs/src/sys/dev/disk/ata/ata-dma.c,v
retrieving revision 1.27
diff -u -r1.27 ata-dma.c
--- ata-dma.c	27 May 2005 21:12:51 -0000	1.27
+++ ata-dma.c	27 Mar 2006 15:55:29 -0000
@@ -143,6 +143,8 @@
 #endif
     switch (chiptype) {
 
+    case 0x27df8086:	/* Intel ICH7 ATA */
+    case 0x27c48086:	/* Intel ICH7M SATA */
     case 0x266f8086:	/* Intel ICH6 ATA */
     case 0x26528086:	/* Intel ICH6R/RW SATA */
     case 0x26518086:	/* Intel ICH6/W SATA */
Index: ata-pci.c
===================================================================
RCS file: /cvs/src/sys/dev/disk/ata/ata-pci.c,v
retrieving revision 1.21
diff -u -r1.21 ata-pci.c
--- ata-pci.c	27 May 2005 21:12:51 -0000	1.21
+++ ata-pci.c	27 Mar 2006 15:53:46 -0000
@@ -163,6 +163,12 @@
     case 0x266f8086:
 	return "Intel ICH6R/RW ATA100 controller";
 
+    case 0x27df8086:
+	return "Intel ICH7 ATA controller";
+
+    case 0x27c48086:
+	return "Intel ICH7M SATA controller";
+
     case 0x522910b9:
 	if (pci_get_revid(dev) >= 0xc4)
 	    return "AcerLabs Aladdin ATA100 controller";



[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]