i386: Split out machine/mptable.h from machine/smp.h
[dragonfly.git] / sys / bus / pci / i386 / mptable_pci.c
1 /*-
2  * Copyright (c) 2003 John Baldwin <jhb@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  * 3. Neither the name of the author nor the names of any co-contributors
14  *    may be used to endorse or promote products derived from this software
15  *    without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  * $FreeBSD @169221
30  */
31
32 /*
33  * Host to PCI and PCI to PCI bridge drivers that use the MP Table to route
34  * interrupts from PCI devices to I/O APICs.
35  */
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/bus.h>
40 #include <sys/kernel.h>
41 #include <sys/module.h>
42
43 #include <bus/pci/pcireg.h>
44 #include <bus/pci/pcivar.h>
45 #include <bus/pci/pcib_private.h>
46
47 #include <machine/mptable.h>
48 #include <machine_base/apic/ioapic.h>
49
50 #include "legacyvar.h"
51 #include "pci_cfgreg.h"
52
53 #include "pcib_if.h"
54
55 static int
56 mptable_pci_route_interrupt(device_t pcib, device_t dev, int pin)
57 {
58         int line, bus, slot, irq;
59
60         bus = pci_get_bus(dev);
61         slot = pci_get_slot(dev);
62         irq = pci_get_irq(dev);
63
64         line = mptable_pci_int_route(bus, slot, pin, irq);
65         if (line >= 0)
66                 goto done;
67
68         kprintf("MPTABLE: Unable to route for bus %d slot %d INT%c\n",
69                 bus, slot, 'A' + pin - 1);
70         return PCI_INVALID_IRQ;
71
72 done:
73         BUS_CONFIG_INTR(dev, dev, line, INTR_TRIGGER_LEVEL, INTR_POLARITY_LOW);
74         return line;
75 }
76
77 /* Host to PCI bridge driver. */
78
79 static int
80 mptable_hostb_probe(device_t dev)
81 {
82         if (!ioapic_enable)
83                 return (ENXIO);
84
85         if (pci_cfgregopen() == 0)
86                 return (ENXIO);
87 #ifdef notyet
88         if (mptable_pci_probe_table(pcib_get_bus(dev)) != 0)
89                 return (ENXIO);
90 #endif
91
92         if (bootverbose)
93                 mptable_pci_int_dump();
94
95         device_set_desc(dev, "MPTABLE Host-PCI bridge");
96         return (0);
97 }
98
99 static int
100 mptable_hostb_attach(device_t dev)
101 {
102
103         device_add_child(dev, "pci", pcib_get_bus(dev));
104         return (bus_generic_attach(dev));
105 }
106
107 /* Pass MSI requests up to the nexus. */
108 static int
109 mptable_hostb_alloc_msi(device_t pcib, device_t dev, int count, int maxcount,
110     int *irqs)
111 {
112         device_t bus;
113
114         bus = device_get_parent(pcib);
115         return (PCIB_ALLOC_MSI(device_get_parent(bus), dev, count, maxcount,
116             irqs));
117 }
118
119 static int
120 mptable_hostb_alloc_msix(device_t pcib, device_t dev, int *irq)
121 {
122         device_t bus;
123
124         bus = device_get_parent(pcib);
125         return (PCIB_ALLOC_MSIX(device_get_parent(bus), dev, irq));
126 }
127
128 static int
129 mptable_hostb_map_msi(device_t pcib, device_t dev, int irq, uint64_t *addr,
130     uint32_t *data)
131 {
132         device_t bus;
133
134         bus = device_get_parent(pcib);
135         return (PCIB_MAP_MSI(device_get_parent(bus), dev, irq, addr, data));
136 }
137
138 static device_method_t mptable_hostb_methods[] = {
139         /* Device interface */
140         DEVMETHOD(device_probe,         mptable_hostb_probe),
141         DEVMETHOD(device_attach,        mptable_hostb_attach),
142         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
143         DEVMETHOD(device_suspend,       bus_generic_suspend),
144         DEVMETHOD(device_resume,        bus_generic_resume),
145
146         /* Bus interface */
147         DEVMETHOD(bus_print_child,      bus_generic_print_child),
148         DEVMETHOD(bus_read_ivar,        legacy_pcib_read_ivar),
149         DEVMETHOD(bus_write_ivar,       legacy_pcib_write_ivar),
150         DEVMETHOD(bus_alloc_resource,   legacy_pcib_alloc_resource),
151         DEVMETHOD(bus_release_resource, bus_generic_release_resource),
152         DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
153         DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
154         DEVMETHOD(bus_setup_intr,       bus_generic_setup_intr),
155         DEVMETHOD(bus_teardown_intr,    bus_generic_teardown_intr),
156
157         /* pcib interface */
158         DEVMETHOD(pcib_maxslots,        legacy_pcib_maxslots),
159         DEVMETHOD(pcib_read_config,     legacy_pcib_read_config),
160         DEVMETHOD(pcib_write_config,    legacy_pcib_write_config),
161         DEVMETHOD(pcib_route_interrupt, mptable_pci_route_interrupt),
162         DEVMETHOD(pcib_alloc_msi,       mptable_hostb_alloc_msi),
163         DEVMETHOD(pcib_release_msi,     pcib_release_msi),
164         DEVMETHOD(pcib_alloc_msix,      mptable_hostb_alloc_msix),
165         DEVMETHOD(pcib_release_msix,    pcib_release_msix),
166         DEVMETHOD(pcib_map_msi,         mptable_hostb_map_msi),
167
168         { 0, 0 }
169 };
170
171 static devclass_t hostb_devclass;
172
173 DEFINE_CLASS_0(pcib, mptable_hostb_driver, mptable_hostb_methods, 1);
174 DRIVER_MODULE(mptable_pcib, legacy, mptable_hostb_driver, hostb_devclass, 0, 0);
175
176 /* PCI to PCI bridge driver. */
177
178 static int
179 mptable_pcib_probe(device_t dev)
180 {
181         int bus;
182
183         if (!ioapic_enable)
184                 return (ENXIO);
185
186         if ((pci_get_class(dev) != PCIC_BRIDGE) ||
187             (pci_get_subclass(dev) != PCIS_BRIDGE_PCI))
188                 return (ENXIO);
189         bus = pci_read_config(dev, PCIR_SECBUS_1, 1);
190         if (bus == 0)
191                 return (ENXIO);
192 #ifdef notyet
193         if (mptable_pci_probe_table(bus) != 0)
194                 return (ENXIO);
195 #endif
196         device_set_desc(dev, "MPTABLE PCI-PCI bridge");
197         return (-500);
198 }
199
200 static device_method_t mptable_pcib_pci_methods[] = {
201         /* Device interface */
202         DEVMETHOD(device_probe,         mptable_pcib_probe),
203         DEVMETHOD(device_attach,        pcib_attach),
204         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
205         DEVMETHOD(device_suspend,       bus_generic_suspend),
206         DEVMETHOD(device_resume,        bus_generic_resume),
207
208         /* Bus interface */
209         DEVMETHOD(bus_print_child,      bus_generic_print_child),
210         DEVMETHOD(bus_read_ivar,        pcib_read_ivar),
211         DEVMETHOD(bus_write_ivar,       pcib_write_ivar),
212         DEVMETHOD(bus_alloc_resource,   pcib_alloc_resource),
213         DEVMETHOD(bus_release_resource, bus_generic_release_resource),
214         DEVMETHOD(bus_activate_resource, bus_generic_activate_resource),
215         DEVMETHOD(bus_deactivate_resource, bus_generic_deactivate_resource),
216         DEVMETHOD(bus_setup_intr,       bus_generic_setup_intr),
217         DEVMETHOD(bus_teardown_intr,    bus_generic_teardown_intr),
218
219         /* pcib interface */
220         DEVMETHOD(pcib_maxslots,        pcib_maxslots),
221         DEVMETHOD(pcib_read_config,     pcib_read_config),
222         DEVMETHOD(pcib_write_config,    pcib_write_config),
223         DEVMETHOD(pcib_route_interrupt, mptable_pci_route_interrupt),
224         DEVMETHOD(pcib_alloc_msi,       pcib_alloc_msi),
225         DEVMETHOD(pcib_release_msi,     pcib_release_msi),
226         DEVMETHOD(pcib_alloc_msix,      pcib_alloc_msix),
227         DEVMETHOD(pcib_release_msix,    pcib_release_msix),
228         DEVMETHOD(pcib_map_msi,         pcib_map_msi),
229
230         {0, 0}
231 };
232
233 static devclass_t pcib_devclass;
234
235 DEFINE_CLASS_0(pcib, mptable_pcib_driver, mptable_pcib_pci_methods,
236     sizeof(struct pcib_softc));
237 DRIVER_MODULE(mptable_pcib, pci, mptable_pcib_driver, pcib_devclass, 0, 0);