Date: Wed, 9 Jul 2008 10:32:05 +0400 (MSD) From: "Andrey V. Elsukov" <bu7cher@yandex.ru> To: FreeBSD-gnats-submit@FreeBSD.org Cc: sos@FreeBSD.org Subject: kern/125422: [ata][patch] add new device id for ICH8 mobile IDE controller Message-ID: <20080709063205.22AEE4AC57@butcher.heavennet.ru> Resent-Message-ID: <200807090700.m69706Pu057591@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 125422 >Category: kern >Synopsis: [ata][patch] add new device id for ICH8 mobile IDE controller >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Jul 09 07:00:06 UTC 2008 >Closed-Date: >Last-Modified: >Originator: Andrey V. Elsukov >Release: FreeBSD 6.2-STABLE i386 >Organization: >Environment: FreeBSD >Description: Add new device id for ICH8M, which supports greater than UDMA33 mode when it worked as generic IDE. >How-To-Repeat: >Fix: --- intel-ich8m-pata-devid.diff begins here --- Index: src/sys/dev/ata/ata-chipset.c =================================================================== RCS file: /ncvs/src/sys/dev/ata/ata-chipset.c,v retrieving revision 1.212 diff -u -p -r1.212 ata-chipset.c --- src/sys/dev/ata/ata-chipset.c 7 Mar 2008 09:29:19 -0000 1.212 +++ src/sys/dev/ata/ata-chipset.c 26 Mar 2008 10:09:57 -0000 @@ -1803,6 +1803,7 @@ ata_intel_ident(device_t dev) { ATA_I82801HB_R1, 0, AHCI, 0x00, ATA_SA300, "ICH8" }, { ATA_I82801HB_AH4, 0, AHCI, 0x00, ATA_SA300, "ICH8" }, { ATA_I82801HB_AH6, 0, AHCI, 0x00, ATA_SA300, "ICH8" }, + { ATA_I82801HBM, 0, 0, 0x00, ATA_UDMA5, "ICH8M" }, { ATA_I82801HBM_S1, 0, AHCI, 0x00, ATA_SA300, "ICH8M" }, { ATA_I82801HBM_S2, 0, AHCI, 0x00, ATA_SA300, "ICH8M" }, { ATA_I82801IB_S1, 0, AHCI, 0x00, ATA_SA300, "ICH9" }, Index: src/sys/dev/ata/ata-pci.h =================================================================== RCS file: /ncvs/src/sys/dev/ata/ata-pci.h,v retrieving revision 1.83 diff -u -p -r1.83 ata-pci.h --- src/sys/dev/ata/ata-pci.h 7 Mar 2008 09:29:19 -0000 1.83 +++ src/sys/dev/ata/ata-pci.h 26 Mar 2008 10:09:57 -0000 @@ -170,6 +170,7 @@ struct ata_connect_task { #define ATA_I82801HB_R1 0x28228086 #define ATA_I82801HB_AH4 0x28248086 #define ATA_I82801HB_S2 0x28258086 +#define ATA_I82801HBM 0x28508086 #define ATA_I82801HBM_S1 0x28298086 #define ATA_I82801HBM_S2 0x282a8086 #define ATA_I82801IB_S1 0x29208086 --- intel-ich8m-pata-devid.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20080709063205.22AEE4AC57>