1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

Add ID's for 5 VLSI chips. They're not very friendly, so this info was

found by taking my HP800CT apart, perusing HPs (Very good!) service
manual and inference from a bad gif file I found in Finland.
Sigh...  But it's a nice machine :-)
This commit is contained in:
Poul-Henning Kamp 1997-08-08 21:11:40 +00:00
parent 980d03ebfb
commit fdfbeb33ae
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=27988

View File

@ -1,6 +1,6 @@
/**************************************************************************
**
** $Id: pcisupport.c,v 1.49 1997/07/29 12:57:08 sos Exp $
** $Id: pcisupport.c,v 1.50 1997/08/02 14:33:13 bde Exp $
**
** Device driver for DEC/INTEL PCI chipsets.
**
@ -212,6 +212,17 @@ chipset_probe (pcici_t tag, pcidi_t type)
return ("DEC 21050 PCI-PCI bridge");
case 0x124b8086:
return ("Intel 82380FB mobile PCI to PCI bridge");
/* VLSI -- vendor 0x1004 */
case 0x01011004:
return ("VLSI 82C532 Eagle Peripheral Controller");
case 0x01021004:
return ("VLSI 82C534 Eagle PCI Bus bridge");
case 0x01031004:
return ("VLSI 82C538 Eagle PCI Docking bridge");
case 0x01041004:
return ("VLSI 82C535 Eagle System Controller");
case 0x01051004:
return ("VLSI 82C147 IrDA Controller");
};
if (descr = generic_pci_bridge(tag))