]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/sparc64/pci/ofw_pcib_subr.c
This commit was generated by cvs2svn to compensate for changes in r172314,
[FreeBSD/FreeBSD.git] / sys / sparc64 / pci / ofw_pcib_subr.c
1 /*-
2  * Copyright (c) 2003 by Thomas Moestl <tmm@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
18  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
20  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
21  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
22  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
23  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24  */
25
26 #include <sys/cdefs.h>
27 __FBSDID("$FreeBSD$");
28
29 #include "opt_ofw_pci.h"
30
31 #include <sys/param.h>
32 #include <sys/systm.h>
33 #include <sys/bus.h>
34
35 #include <dev/ofw/ofw_bus.h>
36 #include <dev/ofw/ofw_pci.h>
37 #include <dev/ofw/openfirm.h>
38
39 #include <machine/bus.h>
40 #include <machine/ofw_bus.h>
41
42 #include <dev/pci/pcireg.h>
43 #include <dev/pci/pcivar.h>
44 #include <dev/pci/pcib_private.h>
45
46 #include "pcib_if.h"
47
48 #include <sparc64/pci/ofw_pci.h>
49 #include <sparc64/pci/ofw_pcib_subr.h>
50
51 void
52 ofw_pcib_gen_setup(device_t bridge)
53 {
54         struct ofw_pcib_gen_softc *sc;
55 #ifndef SUN4V
56         int secbus;
57
58 #endif
59         sc = device_get_softc(bridge);
60         sc->ops_pcib_sc.dev = bridge;
61         sc->ops_node = ofw_bus_get_node(bridge);
62         KASSERT(sc->ops_node != 0,
63             ("ofw_pcib_gen_setup: no ofw pci parent bus!"));
64
65         /*
66          * Setup the secondary bus number register, if supported, by
67          * allocating a new unique bus number for it; the firmware
68          * preset does not always seem to be correct in that case.
69          */
70 #ifndef SUN4V
71         secbus = OFW_PCI_ALLOC_BUSNO(bridge);
72         if (secbus != -1) {
73                 pci_write_config(bridge, PCIR_PRIBUS_1, pci_get_bus(bridge), 1);
74                 pci_write_config(bridge, PCIR_SECBUS_1, secbus, 1);
75                 pci_write_config(bridge, PCIR_SUBBUS_1, secbus, 1);
76                 sc->ops_pcib_sc.subbus = sc->ops_pcib_sc.secbus = secbus;
77                 /* Notify parent bridges. */
78                 OFW_PCI_ADJUST_BUSRANGE(device_get_parent(bridge), secbus);
79         }
80
81 #endif
82         ofw_bus_setup_iinfo(sc->ops_node, &sc->ops_iinfo,
83             sizeof(ofw_pci_intr_t));
84 }
85
86 int
87 ofw_pcib_gen_route_interrupt(device_t bridge, device_t dev, int intpin)
88 {
89         struct ofw_pcib_gen_softc *sc;
90         struct ofw_bus_iinfo *ii;
91         struct ofw_pci_register reg;
92         ofw_pci_intr_t pintr, mintr;
93         uint8_t maskbuf[sizeof(reg) + sizeof(pintr)];
94
95         sc = device_get_softc(bridge);
96         ii = &sc->ops_iinfo;
97         if (ii->opi_imapsz > 0) {
98                 pintr = intpin;
99                 if (ofw_bus_lookup_imap(ofw_bus_get_node(dev), ii, &reg,
100                     sizeof(reg), &pintr, sizeof(pintr), &mintr, sizeof(mintr),
101                     maskbuf)) {
102                         /*
103                          * If we've found a mapping, return it and don't map
104                          * it again on higher levels - that causes problems
105                          * in some cases, and never seems to be required.
106                          */
107                         return (mintr);
108                 }
109         } else if (intpin >= 1 && intpin <= 4) {
110                 /*
111                  * When an interrupt map is missing, we need to do the
112                  * standard PCI swizzle and continue mapping at the parent.
113                  */
114                 return (pcib_route_interrupt(bridge, dev, intpin));
115         }
116         /* Try at the parent. */
117         return (PCIB_ROUTE_INTERRUPT(device_get_parent(device_get_parent(
118             bridge)), bridge, intpin));
119 }
120
121 phandle_t
122 ofw_pcib_gen_get_node(device_t bridge, device_t dev)
123 {
124         struct ofw_pcib_gen_softc *sc;
125
126         sc = device_get_softc(bridge);
127         return (sc->ops_node);
128 }
129
130 void
131 ofw_pcib_gen_adjust_busrange(device_t bridge, u_int subbus)
132 {
133         struct ofw_pcib_gen_softc *sc;
134
135         sc = device_get_softc(bridge);
136         if (subbus > sc->ops_pcib_sc.subbus) {
137 #ifdef OFW_PCI_DEBUG
138                 device_printf(bridge,
139                     "adjusting subordinate bus number from %d to %d\n",
140                     sc->ops_pcib_sc.subbus, subbus);
141 #endif
142                 pci_write_config(bridge, PCIR_SUBBUS_1, subbus, 1);
143                 sc->ops_pcib_sc.subbus = subbus;
144                 /* Notify parent bridges. */
145                 OFW_PCI_ADJUST_BUSRANGE(device_get_parent(bridge), subbus);
146         }
147 }