xref: /minix3/minix/drivers/bus/pci/pci_table.c (revision 3641562f44d79c86c6c04d4f9dee52fc758a1956)
1433d6423SLionel Sambuc /*
2433d6423SLionel Sambuc pci_table.c
3433d6423SLionel Sambuc 
4433d6423SLionel Sambuc Tables with PCI vendor and device identifiers
5433d6423SLionel Sambuc 
6433d6423SLionel Sambuc Created:	Jan 2000 by Philip Homburg <philip@cs.vu.nl>
7433d6423SLionel Sambuc 
8433d6423SLionel Sambuc See the Linux PCI ID Repository <http://pciids.sourceforge.net/>.
9433d6423SLionel Sambuc */
10433d6423SLionel Sambuc 
11433d6423SLionel Sambuc /* Changes from original Minix 2.0.4 version (2003-09-05):
12433d6423SLionel Sambuc  * 2003-11-30 (kjb) Minix 2.0.4 FIX.TAZ add D-Link RTL8139 (0x1186, 0x1300)
13433d6423SLionel Sambuc  * 2004-08-08 (asw) add Intel 82371AB (0x8086, 0x7100)
14433d6423SLionel Sambuc  */
15433d6423SLionel Sambuc 
16433d6423SLionel Sambuc #include <minix/drivers.h>
17*6e7bb628SLionel Sambuc #include <minix/rs.h>
18*6e7bb628SLionel Sambuc 
19433d6423SLionel Sambuc #include "pci.h"
20433d6423SLionel Sambuc 
21433d6423SLionel Sambuc struct pci_isabridge pci_isabridge[]=
22433d6423SLionel Sambuc {
23433d6423SLionel Sambuc 	{ 0x1022, 0x7410, 1, PCI_IB_AMD,	},	/* AMD-766 */
24433d6423SLionel Sambuc 	{ 0x1039, 0x0008, 1, PCI_IB_SIS,	},	/* SiS 85C503/5513 */
25433d6423SLionel Sambuc 	{ 0x10B9, 0x1533, 1, PCI_IB_PIIX,	},	/* ALI M1533 */
26433d6423SLionel Sambuc 	{ 0x1106, 0x0686, 1, PCI_IB_VIA,	},	/* VIA VT82C686 */
27433d6423SLionel Sambuc 	{ 0x1106, 0x3074, 1, PCI_IB_VIA,	},	/* VIA VT8233 */
28433d6423SLionel Sambuc 	{ 0x1106, 0x3227, 1, PCI_IB_VIA,	},	/* VIA */
29433d6423SLionel Sambuc 	{ 0x8086, 0x122E, 1, PCI_IB_PIIX,	},	/* Intel 82371FB */
30433d6423SLionel Sambuc 	{ 0x8086, 0x2440, 1, PCI_IB_PIIX,	},	/* Intel 82801B */
31433d6423SLionel Sambuc 	{ 0x8086, 0x7000, 1, PCI_IB_PIIX,	},	/* Intel 82371SB */
32433d6423SLionel Sambuc  	{ 0x8086, 0x7030, 1, PCI_IB_PIIX,	},	/* Intel 82437VX (asw 2005-03-02) */
33433d6423SLionel Sambuc  	{ 0x8086, 0x7100, 1, PCI_IB_PIIX,	},	/* Intel 82371AB (asw 2004-07-31) */
34433d6423SLionel Sambuc  	{ 0x8086, 0x7110, 1, PCI_IB_PIIX,	},	/* Intel PIIX4 */
35433d6423SLionel Sambuc  	{ 0x8086, 0x7124, 1, PCI_IB_PIIX,	},	/* Intel 82801AA (asw 2004-11-09) */
36433d6423SLionel Sambuc 	{ 0x0000, 0x0000, 0, 0, 		},
37433d6423SLionel Sambuc };
38