isa_pci.c (c306d509692dd2452b2a862e63fe444878e62090) | isa_pci.c (bb0d0a8efc748ae3a7a6f639d373bac067cf8ba1) |
---|---|
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 --- 12 unchanged lines hidden (view full) --- 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 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. | 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 --- 12 unchanged lines hidden (view full) --- 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 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$ |
|
29 */ 30 | 31 */ 32 |
31#include <sys/cdefs.h> 32__FBSDID("$FreeBSD$"); 33 | |
34/* 35 * PCI:ISA bridge support 36 */ 37 38#include <sys/param.h> 39#include <sys/systm.h> 40#include <sys/kernel.h> | 33/* 34 * PCI:ISA bridge support 35 */ 36 37#include <sys/param.h> 38#include <sys/systm.h> 39#include <sys/kernel.h> |
41#include <sys/module.h> | |
42#include <sys/bus.h> 43 | 40#include <sys/bus.h> 41 |
44#include <isa/isavar.h> 45#include <dev/pci/pcivar.h> 46#include <dev/pci/pcireg.h> | 42#include <pci/pcivar.h> 43#include <pci/pcireg.h> |
47 48static int isab_probe(device_t dev); | 44 45static int isab_probe(device_t dev); |
46static int isab_attach(device_t dev); |
|
49 50static device_method_t isab_methods[] = { 51 /* Device interface */ 52 DEVMETHOD(device_probe, isab_probe), 53 DEVMETHOD(device_attach, isab_attach), | 47 48static device_method_t isab_methods[] = { 49 /* Device interface */ 50 DEVMETHOD(device_probe, isab_probe), 51 DEVMETHOD(device_attach, isab_attach), |
54 DEVMETHOD(device_detach, bus_generic_detach), | |
55 DEVMETHOD(device_shutdown, bus_generic_shutdown), 56 DEVMETHOD(device_suspend, bus_generic_suspend), 57 DEVMETHOD(device_resume, bus_generic_resume), 58 59 /* Bus interface */ 60 DEVMETHOD(bus_print_child, bus_generic_print_child), 61 DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource), 62 DEVMETHOD(bus_release_resource, bus_generic_release_resource), --- 6 unchanged lines hidden (view full) --- 69}; 70 71static driver_t isab_driver = { 72 "isab", 73 isab_methods, 74 0, 75}; 76 | 52 DEVMETHOD(device_shutdown, bus_generic_shutdown), 53 DEVMETHOD(device_suspend, bus_generic_suspend), 54 DEVMETHOD(device_resume, bus_generic_resume), 55 56 /* Bus interface */ 57 DEVMETHOD(bus_print_child, bus_generic_print_child), 58 DEVMETHOD(bus_alloc_resource, bus_generic_alloc_resource), 59 DEVMETHOD(bus_release_resource, bus_generic_release_resource), --- 6 unchanged lines hidden (view full) --- 66}; 67 68static driver_t isab_driver = { 69 "isab", 70 isab_methods, 71 0, 72}; 73 |
74static devclass_t isab_devclass; 75 |
|
77DRIVER_MODULE(isab, pci, isab_driver, isab_devclass, 0, 0); 78 79/* 80 * XXX we need to add a quirk list here for bridges that don't correctly 81 * report themselves. 82 */ 83static int 84isab_probe(device_t dev) 85{ 86 int matched = 0; 87 88 /* 89 * Try for a generic match based on class/subclass. 90 */ 91 if ((pci_get_class(dev) == PCIC_BRIDGE) && | 76DRIVER_MODULE(isab, pci, isab_driver, isab_devclass, 0, 0); 77 78/* 79 * XXX we need to add a quirk list here for bridges that don't correctly 80 * report themselves. 81 */ 82static int 83isab_probe(device_t dev) 84{ 85 int matched = 0; 86 87 /* 88 * Try for a generic match based on class/subclass. 89 */ 90 if ((pci_get_class(dev) == PCIC_BRIDGE) && |
92 (pci_get_subclass(dev) == PCIS_BRIDGE_ISA)) { | 91 (pci_get_subclass(dev) == PCIS_BRIDGE_ISA)) |
93 matched = 1; | 92 matched = 1; |
94 } else { | 93 /* 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 */ 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 */ 119 case 0xc7001045: /* OPTi 82C700 (FireStar) */ 120 case 0x00011033: /* NEC 0001 (C-bus) */ 121 case 0x002c1033: /* NEC 002C (C-bus) */ 122 case 0x003b1033: /* NEC 003B (C-bus) */ 123 case 0x886a1060: /* UMC UM8886 ISA */ 124 case 0x02001166: /* ServerWorks IB6566 PCI */ 125 matched = 1; |
95 /* | 126 /* |
96 * These are devices that we *know* are PCI:ISA bridges. 97 * Sometimes, however, they don't report themselves as 98 * such. Check in case one of them is pretending to be 99 * something else. | 127 * Report redundant matches (debugging) |
100 */ | 128 */ |
101 switch (pci_get_devid(dev)) { 102 case 0x04848086: /* Intel 82378ZB/82378IB */ 103 case 0x122e8086: /* Intel 82371FB */ 104 case 0x70008086: /* Intel 82371SB */ 105 case 0x71108086: /* Intel 82371AB */ 106 case 0x71988086: /* Intel 82443MX */ 107 case 0x24108086: /* Intel 82801AA (ICH) */ 108 case 0x24208086: /* Intel 82801AB (ICH0) */ 109 case 0x24408086: /* Intel 82801AB (ICH2) */ 110 case 0x00061004: /* VLSI 82C593 */ 111 case 0x05861106: /* VIA 82C586 */ 112 case 0x05961106: /* VIA 82C596 */ 113 case 0x06861106: /* VIA 82C686 */ 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 */ 119 case 0xc7001045: /* OPTi 82C700 (FireStar) */ 120 case 0x00011033: /* NEC 0001 (C-bus) */ 121 case 0x002c1033: /* NEC 002C (C-bus) */ 122 case 0x003b1033: /* NEC 003B (C-bus) */ 123 case 0x886a1060: /* UMC UM8886 ISA */ 124 case 0x02001166: /* ServerWorks IB6566 PCI */ 125 if (bootverbose) 126 printf("PCI-ISA bridge with incorrect subclass 0x%x\n", 127 pci_get_subclass(dev)); 128 matched = 1; 129 break; 130 131 default: 132 break; | 129 if ((pci_get_class(dev) == PCIC_BRIDGE) && 130 (pci_get_subclass(dev) == PCIS_BRIDGE_ISA)) { 131 printf("** REDUNDANT ISA BRIDGE MATCH FOR DEVICE 0x%08x\n", pci_get_devid(dev)); 132 printf("** Please report to msmith@freebsd.org\n"); |
133 } | 133 } |
134 break; 135 136 default: 137 break; |
|
134 } 135 136 if (matched) { 137 device_set_desc(dev, "PCI-ISA bridge"); 138 return(-10000); 139 } 140 return(ENXIO); 141} | 138 } 139 140 if (matched) { 141 device_set_desc(dev, "PCI-ISA bridge"); 142 return(-10000); 143 } 144 return(ENXIO); 145} |
146 147static int 148isab_attach(device_t dev) 149{ 150 device_t child; 151 152 /* 153 * Attach an ISA bus. Note that we can only have one ISA bus. 154 */ 155 child = device_add_child(dev, "isa", 0); 156 if (child != NULL) 157 return(bus_generic_attach(dev)); 158 159 return(0); 160} 161 |
|