Deleted Added
full compact
isa_pci.c (69783) isa_pci.c (69792)
1/*-
2 * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier
3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000 BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 13 unchanged lines hidden (view full) ---

22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
1/*-
2 * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier
3 * Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
4 * Copyright (c) 2000 BSDi
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

--- 13 unchanged lines hidden (view full) ---

22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
30 * $FreeBSD: head/sys/dev/pci/isa_pci.c 69783 2000-12-08 22:11:23Z msmith $
30 * $FreeBSD: head/sys/dev/pci/isa_pci.c 69792 2000-12-09 09:15:38Z msmith $
31 */
32
33/*
34 * PCI:ISA bridge support
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>

--- 55 unchanged lines hidden (view full) ---

94 * Some bridges don't report the ISA bus correctly.
95 * (Note that some of the devices listed here probably do, we will
96 * kvetch about this below and request updates.)
97 */
98 switch (pci_get_devid(dev)) {
99 case 0x04848086: /* Intel 82378ZB/82378IB */
100 case 0x122e8086: /* Intel 82371FB */
101 case 0x70008086: /* Intel 82371SB */
31 */
32
33/*
34 * PCI:ISA bridge support
35 */
36
37#include <sys/param.h>
38#include <sys/systm.h>

--- 55 unchanged lines hidden (view full) ---

94 * Some bridges don't report the ISA bus correctly.
95 * (Note that some of the devices listed here probably do, we will
96 * kvetch about this below and request updates.)
97 */
98 switch (pci_get_devid(dev)) {
99 case 0x04848086: /* Intel 82378ZB/82378IB */
100 case 0x122e8086: /* Intel 82371FB */
101 case 0x70008086: /* Intel 82371SB */
102 case 0x71108086: /* Intel 82371AB */
103 case 0x71988086: /* Intel 82443MX */
104 case 0x24108086: /* Intel 82801AA (ICH) */
105 case 0x24208086: /* Intel 82801AB (ICH0) */
106 case 0x24408086: /* Intel 82801BA (ICH2) */
107 case 0x00061004: /* VLSI 82C593 */
108 case 0x05861106: /* VIA 82C586 */
109 case 0x05961106: /* VIA 82C596 PCI-ISA */
102 case 0x71988086: /* Intel 82443MX */
103 case 0x24108086: /* Intel 82801AA (ICH) */
104 case 0x24208086: /* Intel 82801AB (ICH0) */
105 case 0x24408086: /* Intel 82801BA (ICH2) */
106 case 0x00061004: /* VLSI 82C593 */
107 case 0x05861106: /* VIA 82C586 */
108 case 0x05961106: /* VIA 82C596 PCI-ISA */
110 case 0x06861106: /* VIA 82C686 PCI-ISA */
111 /* AcerLabs -- vendor 0x10b9 */
112 /* Funny : The datasheet told me vendor id is "10b8",sub-vendor */
113 /* id is '10b9" but the register always shows "10b9". -Foxfair */
114 case 0x153310b9: /* AcerLabs M1533 */
115 case 0x154310b9: /* AcerLabs M1543 */
116 case 0x00081039: /* SiS 85c503 */
117 case 0x00001078: /* Cyrix Cx5510 */
118 case 0x01001078: /* Cyrix Cx5530 */

--- 43 unchanged lines hidden ---
109 /* AcerLabs -- vendor 0x10b9 */
110 /* Funny : The datasheet told me vendor id is "10b8",sub-vendor */
111 /* id is '10b9" but the register always shows "10b9". -Foxfair */
112 case 0x153310b9: /* AcerLabs M1533 */
113 case 0x154310b9: /* AcerLabs M1543 */
114 case 0x00081039: /* SiS 85c503 */
115 case 0x00001078: /* Cyrix Cx5510 */
116 case 0x01001078: /* Cyrix Cx5530 */

--- 43 unchanged lines hidden ---