xref: /freebsd/sys/powerpc/ofw/ofw_pcib_pci.c (revision 675be9115aae86ad6b3d877155d4fd7822892105)
1 /*-
2  * Copyright (c) 2000 Michael Smith
3  * Copyright (c) 2000 BSDi
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include <sys/param.h>
32 #include <sys/module.h>
33 #include <sys/bus.h>
34 #include <sys/malloc.h>
35 #include <sys/kernel.h>
36 
37 #include <dev/ofw/openfirm.h>
38 #include <dev/ofw/ofw_pci.h>
39 #include <dev/ofw/ofw_bus.h>
40 #include <dev/ofw/ofw_bus_subr.h>
41 
42 #include <dev/pci/pcivar.h>
43 #include <dev/pci/pcireg.h>
44 #include <dev/pci/pcib_private.h>
45 
46 #include <machine/intr_machdep.h>
47 
48 #include "pcib_if.h"
49 
50 static int	ofw_pcib_pci_probe(device_t bus);
51 static int	ofw_pcib_pci_attach(device_t bus);
52 static phandle_t ofw_pcib_pci_get_node(device_t bus, device_t dev);
53 static int	ofw_pcib_pci_route_interrupt(device_t bridge, device_t dev,
54 		    int intpin);
55 
56 static device_method_t ofw_pcib_pci_methods[] = {
57 	/* Device interface */
58 	DEVMETHOD(device_probe,		ofw_pcib_pci_probe),
59 	DEVMETHOD(device_attach,		ofw_pcib_pci_attach),
60 	DEVMETHOD(device_shutdown,		bus_generic_shutdown),
61 	DEVMETHOD(device_suspend,		bus_generic_suspend),
62 	DEVMETHOD(device_resume,		bus_generic_resume),
63 
64 	/* Bus interface */
65 	DEVMETHOD(bus_read_ivar,		pcib_read_ivar),
66 	DEVMETHOD(bus_write_ivar,		pcib_write_ivar),
67 	DEVMETHOD(bus_alloc_resource,	pcib_alloc_resource),
68 	DEVMETHOD(bus_release_resource,	bus_generic_release_resource),
69 	DEVMETHOD(bus_activate_resource,	bus_generic_activate_resource),
70 	DEVMETHOD(bus_deactivate_resource, 	bus_generic_deactivate_resource),
71 	DEVMETHOD(bus_setup_intr,		bus_generic_setup_intr),
72 	DEVMETHOD(bus_teardown_intr,	bus_generic_teardown_intr),
73 
74 	/* pcib interface */
75 	DEVMETHOD(pcib_maxslots,		pcib_maxslots),
76 	DEVMETHOD(pcib_read_config,		pcib_read_config),
77 	DEVMETHOD(pcib_write_config,	pcib_write_config),
78 	DEVMETHOD(pcib_route_interrupt,	ofw_pcib_pci_route_interrupt),
79 	DEVMETHOD(pcib_alloc_msi,	pcib_alloc_msi),
80 	DEVMETHOD(pcib_release_msi,	pcib_release_msi),
81 	DEVMETHOD(pcib_alloc_msix,	pcib_alloc_msix),
82 	DEVMETHOD(pcib_release_msix,	pcib_release_msix),
83 	DEVMETHOD(pcib_map_msi,		pcib_map_msi),
84 
85 	/* ofw_bus interface */
86 	DEVMETHOD(ofw_bus_get_node,	ofw_pcib_pci_get_node),
87 
88 	DEVMETHOD_END
89 };
90 
91 static devclass_t pcib_devclass;
92 
93 struct ofw_pcib_softc {
94         /*
95          * This is here so that we can use pci bridge methods, too - the
96          * generic routines only need the dev, secbus and subbus members
97          * filled.
98          */
99         struct pcib_softc       ops_pcib_sc;
100 	phandle_t		ops_node;
101         struct ofw_bus_iinfo    ops_iinfo;
102 };
103 
104 DEFINE_CLASS_0(pcib, ofw_pcib_pci_driver, ofw_pcib_pci_methods,
105     sizeof(struct ofw_pcib_softc));
106 DRIVER_MODULE(ofw_pcib, pci, ofw_pcib_pci_driver, pcib_devclass, 0, 0);
107 
108 static int
109 ofw_pcib_pci_probe(device_t dev)
110 {
111 
112 	if ((pci_get_class(dev) != PCIC_BRIDGE) ||
113 	    (pci_get_subclass(dev) != PCIS_BRIDGE_PCI)) {
114 		return (ENXIO);
115 	}
116 
117 	if (ofw_bus_get_node(dev) == 0)
118 		return (ENXIO);
119 
120 	device_set_desc(dev, "OFW PCI-PCI bridge");
121 	return (0);
122 }
123 
124 static int
125 ofw_pcib_pci_attach(device_t dev)
126 {
127 	struct ofw_pcib_softc *sc;
128 
129 	sc = device_get_softc(dev);
130 	sc->ops_pcib_sc.dev = dev;
131 	sc->ops_node = ofw_bus_get_node(dev);
132 
133 	ofw_bus_setup_iinfo(sc->ops_node, &sc->ops_iinfo,
134 	    sizeof(cell_t));
135 
136 	pcib_attach_common(dev);
137 
138 	device_add_child(dev, "pci", -1);
139 
140 	return (bus_generic_attach(dev));
141 }
142 
143 static phandle_t
144 ofw_pcib_pci_get_node(device_t bridge, device_t dev)
145 {
146 	/* We have only one child, the PCI bus, so pass it our node */
147 
148 	return (ofw_bus_get_node(bridge));
149 }
150 
151 static int
152 ofw_pcib_pci_route_interrupt(device_t bridge, device_t dev, int intpin)
153 {
154 	struct ofw_pcib_softc *sc;
155 	struct ofw_bus_iinfo *ii;
156 	struct ofw_pci_register reg;
157 	cell_t pintr, mintr;
158 	phandle_t iparent;
159 	uint8_t maskbuf[sizeof(reg) + sizeof(pintr)];
160 
161 	sc = device_get_softc(bridge);
162 	ii = &sc->ops_iinfo;
163 	if (ii->opi_imapsz > 0) {
164 		pintr = intpin;
165 		if (ofw_bus_lookup_imap(ofw_bus_get_node(dev), ii, &reg,
166 		    sizeof(reg), &pintr, sizeof(pintr), &mintr, sizeof(mintr),
167 		    &iparent, maskbuf)) {
168 			/*
169 			 * If we've found a mapping, return it and don't map
170 			 * it again on higher levels - that causes problems
171 			 * in some cases, and never seems to be required.
172 			 */
173 			return (MAP_IRQ(iparent, mintr));
174 		}
175 	} else if (intpin >= 1 && intpin <= 4) {
176 		/*
177 		 * When an interrupt map is missing, we need to do the
178 		 * standard PCI swizzle and continue mapping at the parent.
179 		 */
180 		return (pcib_route_interrupt(bridge, dev, intpin));
181 	}
182 	return (PCIB_ROUTE_INTERRUPT(device_get_parent(device_get_parent(
183 	    bridge)), bridge, intpin));
184 }
185 
186