From nobody@FreeBSD.org  Mon Feb 18 06:21:06 2002
Return-Path: <nobody@FreeBSD.org>
Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21])
	by hub.freebsd.org (Postfix) with ESMTP id 5CC7D37B404
	for <freebsd-gnats-submit@FreeBSD.org>; Mon, 18 Feb 2002 06:21:06 -0800 (PST)
Received: (from nobody@localhost)
	by freefall.freebsd.org (8.11.6/8.11.6) id g1IEL6w63907;
	Mon, 18 Feb 2002 06:21:06 -0800 (PST)
	(envelope-from nobody)
Message-Id: <200202181421.g1IEL6w63907@freefall.freebsd.org>
Date: Mon, 18 Feb 2002 06:21:06 -0800 (PST)
From: David Xu <davidx@viasoft.com.cn>
To: freebsd-gnats-submit@FreeBSD.org
Subject: Identify Intel 82845 chipset
X-Send-Pr-Version: www-1.0

>Number:         35077
>Category:       i386
>Synopsis:       Identify Intel 82845 chipset
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Mon Feb 18 06:30:01 PST 2002
>Closed-Date:    Sun Apr 07 06:05:12 PDT 2002
>Last-Modified:  Sun Apr 07 06:05:12 PDT 2002
>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:
State-Changed-From-To: open->closed 
State-Changed-By: asmodai 
State-Changed-When: Sun Apr 7 06:04:43 PDT 2002 
State-Changed-Why:  
Committed to STABLE. 
CURRENT's pci_vendors has the ID's in question already. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=35077 
>Unformatted:
