Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / bus / pci / pci_compat.c
1 /*
2  * Copyright (c) 1997, Stefan Esser <se@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 unmodified, this list of conditions, and the following
10  *    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 ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/pci/pci_compat.c,v 1.35.2.1 2001/10/14 21:14:14 luigi Exp $
27  * $DragonFly: src/sys/bus/pci/pci_compat.c,v 1.2 2003/06/17 04:28:57 dillon Exp $
28  *
29  */
30
31 #include "opt_bus.h"
32
33 /* for compatibility to FreeBSD-2.2 version of PCI code */
34
35 #include <sys/param.h>
36 #include <sys/systm.h>
37 #include <sys/malloc.h>
38
39 #include <vm/vm.h>
40 #include <vm/pmap.h>
41 #include <sys/interrupt.h>
42
43 #include <sys/bus.h>
44 #include <machine/bus.h>
45 #include <sys/rman.h>
46 #include <machine/resource.h>
47
48 #include <pci/pcireg.h>
49 #include <pci/pcivar.h>
50
51 #ifdef APIC_IO
52 #include <machine/smp.h>
53 #endif
54
55 #ifdef PCI_COMPAT
56
57 /* ------------------------------------------------------------------------- */
58
59 u_long
60 pci_conf_read(pcici_t cfg, u_long reg)
61 {
62         return (pci_read_config(cfg->dev, reg, 4));
63 }
64
65 void
66 pci_conf_write(pcici_t cfg, u_long reg, u_long data)
67 {
68         pci_write_config(cfg->dev, reg, data, 4);
69 }
70
71 int
72 pci_map_port(pcici_t cfg, u_long reg, pci_port_t* pa)
73 {
74         int rid;
75         struct resource *res;
76
77         rid = reg;
78         res = bus_alloc_resource(cfg->dev, SYS_RES_IOPORT, &rid,
79                                  0, ~0, 1, RF_ACTIVE);
80         if (res) {
81                 *pa = rman_get_start(res);
82                 return (1);
83         }
84         return (0);
85 }
86
87 int
88 pci_map_mem(pcici_t cfg, u_long reg, vm_offset_t* va, vm_offset_t* pa)
89 {
90         int rid;
91         struct resource *res;
92
93         rid = reg;
94         res = bus_alloc_resource(cfg->dev, SYS_RES_MEMORY, &rid,
95                                  0, ~0, 1, RF_ACTIVE);
96         if (res) {
97                 *pa = rman_get_start(res);
98                 *va = (vm_offset_t) rman_get_virtual(res);
99                 return (1);
100         }
101         return (0);
102 }
103
104 int
105 pci_map_int(pcici_t cfg, pci_inthand_t *handler, void *arg, intrmask_t *maskptr)
106 {
107         return (pci_map_int_right(cfg, handler, arg, maskptr, 0));
108 }
109
110 int
111 pci_map_int_right(pcici_t cfg, pci_inthand_t *handler, void *arg,
112                   intrmask_t *maskptr, u_int intflags)
113 {
114         int error;
115 #ifdef APIC_IO
116         int nextpin, muxcnt;
117 #endif
118         if (cfg->intpin != 0) {
119                 int irq = cfg->intline;
120                 int rid = 0;
121                 struct resource *res;
122                 int flags = 0;
123                 int resflags = RF_SHAREABLE|RF_ACTIVE;
124                 void *ih;
125
126 #ifdef INTR_FAST
127                 if (intflags & INTR_FAST)
128                         flags |= INTR_TYPE_FAST;
129                 if (intflags & INTR_EXCL)
130                         resflags &= ~RF_SHAREABLE;
131 #endif
132
133                 res = bus_alloc_resource(cfg->dev, SYS_RES_IRQ, &rid,
134                                          irq, irq, 1, resflags);
135                 if (!res) {
136                         printf("pci_map_int: can't allocate interrupt\n");
137                         return 0;
138                 }
139
140                 /*
141                  * This is ugly. Translate the mask into an interrupt type.
142                  */
143                 if (maskptr == &tty_imask)
144                         flags |= INTR_TYPE_TTY;
145                 else if (maskptr == &bio_imask)
146                         flags |= INTR_TYPE_BIO;
147                 else if (maskptr == &net_imask)
148                         flags |= INTR_TYPE_NET;
149                 else if (maskptr == &cam_imask)
150                         flags |= INTR_TYPE_CAM;
151
152                 error = BUS_SETUP_INTR(device_get_parent(cfg->dev), cfg->dev,
153                                        res, flags, handler, arg, &ih);
154                 if (error != 0)
155                         return 0;
156
157 #ifdef NEW_BUS_PCI
158                 /*
159                  * XXX this apic stuff looks totally busted.  It should
160                  * move to the nexus code which actually registers the
161                  * interrupt.
162                  */
163 #endif
164
165 #ifdef APIC_IO
166                 nextpin = next_apic_irq(irq);
167                 
168                 if (nextpin < 0)
169                         return 1;
170
171                 /* 
172                  * Attempt handling of some broken mp tables.
173                  *
174                  * It's OK to yell (since the mp tables are broken).
175                  * 
176                  * Hanging in the boot is not OK
177                  */
178
179                 muxcnt = 2;
180                 nextpin = next_apic_irq(nextpin);
181                 while (muxcnt < 5 && nextpin >= 0) {
182                         muxcnt++;
183                         nextpin = next_apic_irq(nextpin);
184                 }
185                 if (muxcnt >= 5) {
186                         printf("bogus MP table, more than 4 IO APIC pins connected to the same PCI device or ISA/EISA interrupt\n");
187                         return 0;
188                 }
189                 
190                 printf("bogus MP table, %d IO APIC pins connected to the same PCI device or ISA/EISA interrupt\n", muxcnt);
191
192                 nextpin = next_apic_irq(irq);
193                 while (nextpin >= 0) {
194                         rid = 0;
195                         res = bus_alloc_resource(cfg->dev, SYS_RES_IRQ, &rid,
196                                                  nextpin, nextpin, 1,
197                                                  resflags);
198                         if (!res) {
199                                 printf("pci_map_int: can't allocate extra interrupt\n");
200                                 return 0;
201                         }
202                         error = BUS_SETUP_INTR(device_get_parent(cfg->dev),
203                                                cfg->dev, res, flags,
204                                                handler, arg, &ih);
205                         if (error != 0) {
206                                 printf("pci_map_int: BUS_SETUP_INTR failed\n");
207                                 return 0;
208                         }
209                         printf("Registered extra interrupt handler for int %d (in addition to int %d)\n", nextpin, irq);
210                         nextpin = next_apic_irq(nextpin);
211                 }
212 #endif
213         }
214         return (1);
215 }
216
217 int
218 pci_unmap_int(pcici_t cfg)
219 {
220         return (0); /* not supported, yet, since cfg doesn't know about idesc */
221 }
222
223 pcici_t
224 pci_get_parent_from_tag(pcici_t tag)
225 {
226         return (pcici_t)pci_devlist_get_parent(tag);
227 }
228
229 int
230 pci_get_bus_from_tag(pcici_t tag)
231 {
232         return tag->bus;
233 }
234
235 #endif /* PCI_COMPAT */