Date: Mon, 18 Feb 2002 06:21:06 -0800 (PST) From: David Xu <davidx@viasoft.com.cn> To: freebsd-gnats-submit@FreeBSD.org Subject: i386/35077: Identify Intel 82845 chipset Message-ID: <200202181421.g1IEL6w63907@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>Number: 35077
>Category: i386
>Synopsis: Identify Intel 82845 chipset
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: sw-bug
>Submitter-Id: current-users
>Arrival-Date: Mon Feb 18 06:30:01 PST 2002
>Closed-Date:
>Last-Modified:
>Originator: David Xu
>Release: FreeBSD 4.4-release
>Organization:
Viasoft
>Environment:
>Description:
just got an ASUS P4B266 motherboard, the board has an Intel 82845 chipset, of course FreeBSD-stable doesn't know its name, here is the patch.
>How-To-Repeat:
>Fix:
file /sys/i386/isa/pcibus.c:
--- pcibus.c.orig Mon Feb 18 21:45:08 2002
+++ pcibus.c Mon Feb 18 21:59:28 2002
@@ -126,6 +126,9 @@
break;
}
break;
+ case 0x1A308086:
+ s = "Intel 82845 Host to PCI bridge";
+ break;
/* AMD -- vendor 0x1022 */
case 0x70061022:
file /sys/pci/pcisupport.c:
--- pcisupport.c.orig Mon Feb 18 21:35:44 2002
+++ pcisupport.c Mon Feb 18 21:53:47 2002
@@ -692,6 +692,8 @@
return ("Intel 82801AB (ICH0) Hub to PCI bridge");
case 0x244e8086:
return ("Intel 82801BA/BAM (ICH2) Hub to PCI bridge");
+ case 0x1a318086:
+ return ("Intel 82845 PCI-PCI (AGP) bridge");
/* VLSI -- vendor 0x1004 */
case 0x01021004:
>Release-Note:
>Audit-Trail:
>Unformatted:
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-bugs" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200202181421.g1IEL6w63907>
