xref: /openbsd/sys/arch/amd64/pci/pcib.c (revision cca36db2)
1 /*	$OpenBSD: pcib.c,v 1.5 2010/07/08 20:17:54 deraadt Exp $	*/
2 /*	$NetBSD: pcib.c,v 1.6 1997/06/06 23:29:16 thorpej Exp $	*/
3 
4 /*-
5  * Copyright (c) 1996 The NetBSD Foundation, Inc.
6  * All rights reserved.
7  *
8  * This code is derived from software contributed to The NetBSD Foundation
9  * by Jason R. Thorpe.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30  * POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/device.h>
36 
37 #include <machine/bus.h>
38 #include <dev/isa/isavar.h>
39 
40 #include <dev/pci/pcivar.h>
41 #include <dev/pci/pcireg.h>
42 
43 #include <dev/pci/pcidevs.h>
44 
45 #include "isa.h"
46 
47 int	pcibmatch(struct device *, void *, void *);
48 void	pcibattach(struct device *, struct device *, void *);
49 void	pcib_callback(struct device *);
50 int	pcib_print(void *, const char *);
51 
52 struct cfattach pcib_ca = {
53 	sizeof(struct device), pcibmatch, pcibattach,
54 	NULL, config_activate_children
55 };
56 
57 struct cfdriver pcib_cd = {
58 	NULL, "pcib", DV_DULL
59 };
60 
61 int
62 pcibmatch(struct device *parent, void *match, void *aux)
63 {
64 	struct pci_attach_args *pa = aux;
65 
66 	switch (PCI_VENDOR(pa->pa_id)) {
67 	case PCI_VENDOR_INTEL:
68 		switch (PCI_PRODUCT(pa->pa_id)) {
69 		case PCI_PRODUCT_INTEL_SIO:
70 		case PCI_PRODUCT_INTEL_82371MX:
71 		case PCI_PRODUCT_INTEL_82371AB_ISA:
72 		case PCI_PRODUCT_INTEL_82440MX_ISA:
73 			/* The above bridges mis-identify themselves */
74 			return (1);
75 		}
76 		break;
77 	case PCI_VENDOR_SIS:
78 		switch (PCI_PRODUCT(pa->pa_id)) {
79 		case PCI_PRODUCT_SIS_85C503:
80 			/* mis-identifies itself as a miscellaneous prehistoric */
81 			return (1);
82 		}
83 		break;
84 	case PCI_VENDOR_VIATECH:
85 		switch (PCI_PRODUCT(pa->pa_id)) {
86 		case PCI_PRODUCT_VIATECH_VT82C686A_SMB:
87 			/* mis-identifies itself as a ISA bridge */
88 			return (0);
89 		}
90 		break;
91 	}
92 
93 	if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
94 	    PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_ISA)
95 		return (1);
96 
97 	return (0);
98 }
99 
100 void
101 pcibattach(struct device *parent, struct device *self, void *aux)
102 {
103 	/*
104 	 * Cannot attach isa bus now; must postpone for various reasons
105 	 */
106 	printf("\n");
107 
108 	config_defer(self, pcib_callback);
109 }
110 
111 void
112 pcib_callback(struct device *self)
113 {
114 	struct isabus_attach_args iba;
115 
116 	/*
117 	 * Attach the ISA bus behind this bridge.
118 	 */
119 	memset(&iba, 0, sizeof(iba));
120 	iba.iba_busname = "isa";
121 	iba.iba_iot = X86_BUS_SPACE_IO;
122 	iba.iba_memt = X86_BUS_SPACE_MEM;
123 #if NISADMA > 0
124 	iba.iba_dmat = &isa_bus_dma_tag;
125 #endif
126 	config_found(self, &iba, pcib_print);
127 }
128 
129 int
130 pcib_print(void *aux, const char *pnp)
131 {
132 	/* Only ISAs can attach to pcib's; easy. */
133 	if (pnp)
134 		printf("isa at %s", pnp);
135 	return (UNCONF);
136 }
137