rbus_ppb.c revision 1.1.4.3 1 1.1.4.3 nathanw /* $NetBSD: rbus_ppb.c,v 1.1.4.3 2001/11/14 19:14:02 nathanw Exp $ */
2 1.1.4.2 nathanw
3 1.1.4.2 nathanw /*
4 1.1.4.2 nathanw * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 1.1.4.2 nathanw * All rights reserved.
6 1.1.4.2 nathanw *
7 1.1.4.2 nathanw * This code is derived from software contributed to The NetBSD Foundation
8 1.1.4.2 nathanw * by Michael Richardson <mcr (at) sandelman.ottawa.on.ca>
9 1.1.4.2 nathanw *
10 1.1.4.2 nathanw * Redistribution and use in source and binary forms, with or without
11 1.1.4.2 nathanw * modification, are permitted provided that the following conditions
12 1.1.4.2 nathanw * are met:
13 1.1.4.2 nathanw * 1. Redistributions of source code must retain the above copyright
14 1.1.4.2 nathanw * notice, this list of conditions and the following disclaimer.
15 1.1.4.2 nathanw * 2. Redistributions in binary form must reproduce the above copyright
16 1.1.4.2 nathanw * notice, this list of conditions and the following disclaimer in the
17 1.1.4.2 nathanw * documentation and/or other materials provided with the distribution.
18 1.1.4.2 nathanw * 3. All advertising materials mentioning features or use of this software
19 1.1.4.2 nathanw * must display the following acknowledgement:
20 1.1.4.2 nathanw * This product includes software developed by the NetBSD
21 1.1.4.2 nathanw * Foundation, Inc. and its contributors.
22 1.1.4.2 nathanw * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1.4.2 nathanw * contributors may be used to endorse or promote products derived
24 1.1.4.2 nathanw * from this software without specific prior written permission.
25 1.1.4.2 nathanw *
26 1.1.4.2 nathanw * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1.4.2 nathanw * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1.4.2 nathanw * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1.4.2 nathanw * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1.4.2 nathanw * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1.4.2 nathanw * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1.4.2 nathanw * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1.4.2 nathanw * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1.4.2 nathanw * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1.4.2 nathanw * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1.4.2 nathanw * POSSIBILITY OF SUCH DAMAGE.
37 1.1.4.2 nathanw */
38 1.1.4.2 nathanw
39 1.1.4.2 nathanw /*
40 1.1.4.2 nathanw * CardBus front-end for the Intel/Digital DECchip 21152 PCI-PCI bridge
41 1.1.4.2 nathanw */
42 1.1.4.2 nathanw
43 1.1.4.3 nathanw #include <sys/cdefs.h>
44 1.1.4.3 nathanw __KERNEL_RCSID(0, "$NetBSD: rbus_ppb.c,v 1.1.4.3 2001/11/14 19:14:02 nathanw Exp $");
45 1.1.4.3 nathanw
46 1.1.4.2 nathanw #include <sys/param.h>
47 1.1.4.2 nathanw #include <sys/systm.h>
48 1.1.4.2 nathanw #include <sys/mbuf.h>
49 1.1.4.2 nathanw #include <sys/malloc.h>
50 1.1.4.2 nathanw #include <sys/kernel.h>
51 1.1.4.2 nathanw #include <sys/socket.h>
52 1.1.4.2 nathanw #include <sys/ioctl.h>
53 1.1.4.2 nathanw #include <sys/errno.h>
54 1.1.4.2 nathanw #include <sys/device.h>
55 1.1.4.2 nathanw
56 1.1.4.2 nathanw #if NRND > 0
57 1.1.4.2 nathanw #include <sys/rnd.h>
58 1.1.4.2 nathanw #endif
59 1.1.4.2 nathanw
60 1.1.4.2 nathanw #include <machine/endian.h>
61 1.1.4.2 nathanw
62 1.1.4.2 nathanw #include <machine/bus.h>
63 1.1.4.2 nathanw #include <machine/intr.h>
64 1.1.4.2 nathanw
65 1.1.4.2 nathanw #include <dev/pci/pcivar.h>
66 1.1.4.2 nathanw #include <dev/pci/pcireg.h>
67 1.1.4.2 nathanw #include <dev/pci/pcidevs.h>
68 1.1.4.2 nathanw #include <dev/pci/ppbreg.h>
69 1.1.4.2 nathanw
70 1.1.4.2 nathanw #include <dev/ic/i82365reg.h>
71 1.1.4.2 nathanw #include <dev/ic/i82365var.h>
72 1.1.4.2 nathanw
73 1.1.4.2 nathanw #include <dev/pci/pccbbreg.h>
74 1.1.4.2 nathanw #include <dev/pci/pccbbvar.h>
75 1.1.4.2 nathanw
76 1.1.4.2 nathanw #include <dev/cardbus/cardbusvar.h>
77 1.1.4.2 nathanw #include <dev/cardbus/cardbusdevs.h>
78 1.1.4.2 nathanw
79 1.1.4.2 nathanw #include <i386/pci/pci_addr_fixup.h>
80 1.1.4.2 nathanw #include <i386/pci/pci_bus_fixup.h>
81 1.1.4.2 nathanw #include <i386/pci/pci_intr_fixup.h>
82 1.1.4.2 nathanw #include <i386/pci/pcibios.h>
83 1.1.4.2 nathanw
84 1.1.4.2 nathanw struct ppb_softc;
85 1.1.4.2 nathanw
86 1.1.4.2 nathanw static int ppb_cardbus_match __P((struct device *, struct cfdata *, void *));
87 1.1.4.2 nathanw static void ppb_cardbus_attach __P((struct device *, struct device *, void *));
88 1.1.4.2 nathanw static int ppb_cardbus_detach __P((struct device * self, int flags));
89 1.1.4.2 nathanw /*static*/ void ppb_cardbus_setup __P((struct ppb_softc * sc));
90 1.1.4.2 nathanw /*static*/ int ppb_cardbus_enable __P((struct ppb_softc * sc));
91 1.1.4.2 nathanw /*static*/ void ppb_cardbus_disable __P((struct ppb_softc * sc));
92 1.1.4.2 nathanw static int ppb_activate __P((struct device *self, enum devact act));
93 1.1.4.2 nathanw int rppbprint __P((void *aux, const char *pnp));
94 1.1.4.2 nathanw int rbus_intr_fixup __P((pci_chipset_tag_t pc, int minbus,
95 1.1.4.2 nathanw int maxbus, int line));
96 1.1.4.2 nathanw void rbus_do_header_fixup __P((pci_chipset_tag_t pc, pcitag_t tag,
97 1.1.4.2 nathanw void *context));
98 1.1.4.2 nathanw
99 1.1.4.2 nathanw static void rbus_pci_phys_allocate __P((pci_chipset_tag_t pc,
100 1.1.4.2 nathanw pcitag_t tag,
101 1.1.4.2 nathanw void *context));
102 1.1.4.2 nathanw
103 1.1.4.2 nathanw static int rbus_do_phys_allocate __P((pci_chipset_tag_t pc,
104 1.1.4.2 nathanw pcitag_t tag,
105 1.1.4.2 nathanw int mapreg,
106 1.1.4.2 nathanw void *ctx,
107 1.1.4.2 nathanw int type,
108 1.1.4.2 nathanw bus_addr_t *addr,
109 1.1.4.2 nathanw bus_size_t size));
110 1.1.4.2 nathanw
111 1.1.4.2 nathanw static void rbus_pci_phys_countspace __P((pci_chipset_tag_t pc,
112 1.1.4.2 nathanw pcitag_t tag,
113 1.1.4.2 nathanw void *context));
114 1.1.4.2 nathanw
115 1.1.4.2 nathanw static int rbus_do_phys_countspace __P((pci_chipset_tag_t pc,
116 1.1.4.2 nathanw pcitag_t tag,
117 1.1.4.2 nathanw int mapreg,
118 1.1.4.2 nathanw void *ctx,
119 1.1.4.2 nathanw int type,
120 1.1.4.2 nathanw bus_addr_t *addr,
121 1.1.4.2 nathanw bus_size_t size));
122 1.1.4.2 nathanw
123 1.1.4.2 nathanw unsigned int rbus_round_up __P((unsigned int size, unsigned int min));
124 1.1.4.2 nathanw
125 1.1.4.2 nathanw
126 1.1.4.2 nathanw struct ppb_cardbus_softc {
127 1.1.4.2 nathanw struct device sc_dev;
128 1.1.4.2 nathanw int foo;
129 1.1.4.2 nathanw };
130 1.1.4.2 nathanw
131 1.1.4.2 nathanw struct cfattach rbus_ppb_ca = {
132 1.1.4.2 nathanw sizeof(struct ppb_cardbus_softc),
133 1.1.4.2 nathanw ppb_cardbus_match,
134 1.1.4.2 nathanw ppb_cardbus_attach,
135 1.1.4.2 nathanw ppb_cardbus_detach,
136 1.1.4.2 nathanw ppb_activate
137 1.1.4.2 nathanw };
138 1.1.4.2 nathanw
139 1.1.4.2 nathanw #ifdef CBB_DEBUG
140 1.1.4.2 nathanw int rbus_ppb_debug = 0; /* hack with kdb */
141 1.1.4.2 nathanw #define DPRINTF(X) if(rbus_ppb_debug) printf X
142 1.1.4.2 nathanw #else
143 1.1.4.2 nathanw #define DPRINTF(X)
144 1.1.4.2 nathanw #endif
145 1.1.4.2 nathanw
146 1.1.4.2 nathanw static int
147 1.1.4.2 nathanw ppb_cardbus_match(parent, match, aux)
148 1.1.4.2 nathanw struct device *parent;
149 1.1.4.2 nathanw struct cfdata *match;
150 1.1.4.2 nathanw void *aux;
151 1.1.4.2 nathanw {
152 1.1.4.2 nathanw struct cardbus_attach_args *ca = aux;
153 1.1.4.2 nathanw
154 1.1.4.2 nathanw if (CARDBUS_VENDOR(ca->ca_id) == PCI_VENDOR_DEC &&
155 1.1.4.2 nathanw CARDBUS_PRODUCT(ca->ca_id) == PCI_PRODUCT_DEC_21152)
156 1.1.4.2 nathanw return (1);
157 1.1.4.2 nathanw
158 1.1.4.2 nathanw if(PCI_CLASS(ca->ca_class) == PCI_CLASS_BRIDGE &&
159 1.1.4.2 nathanw PCI_SUBCLASS(ca->ca_class) == PCI_SUBCLASS_BRIDGE_PCI) {
160 1.1.4.2 nathanw /* XXX */
161 1.1.4.2 nathanw printf("recognizing generic bridge chip\n");
162 1.1.4.2 nathanw }
163 1.1.4.2 nathanw
164 1.1.4.2 nathanw return (0);
165 1.1.4.2 nathanw }
166 1.1.4.2 nathanw
167 1.1.4.2 nathanw
168 1.1.4.2 nathanw int
169 1.1.4.2 nathanw rppbprint(aux, pnp)
170 1.1.4.2 nathanw void *aux;
171 1.1.4.2 nathanw const char *pnp;
172 1.1.4.2 nathanw {
173 1.1.4.2 nathanw struct pcibus_attach_args *pba = aux;
174 1.1.4.2 nathanw
175 1.1.4.2 nathanw /* only PCIs can attach to PPBs; easy. */
176 1.1.4.2 nathanw if (pnp)
177 1.1.4.2 nathanw printf("pci at %s", pnp);
178 1.1.4.2 nathanw printf(" bus %d (rbus)", pba->pba_bus);
179 1.1.4.2 nathanw return (UNCONF);
180 1.1.4.2 nathanw }
181 1.1.4.2 nathanw
182 1.1.4.2 nathanw int
183 1.1.4.2 nathanw rbus_intr_fixup(pci_chipset_tag_t pc,
184 1.1.4.2 nathanw int minbus,
185 1.1.4.2 nathanw int maxbus,
186 1.1.4.2 nathanw int line)
187 1.1.4.2 nathanw {
188 1.1.4.2 nathanw pci_device_foreach_min(pc, minbus,
189 1.1.4.2 nathanw maxbus, rbus_do_header_fixup, (void *)&line);
190 1.1.4.2 nathanw return 0;
191 1.1.4.2 nathanw }
192 1.1.4.2 nathanw
193 1.1.4.2 nathanw void
194 1.1.4.2 nathanw rbus_do_header_fixup(pc, tag, context)
195 1.1.4.2 nathanw pci_chipset_tag_t pc;
196 1.1.4.2 nathanw pcitag_t tag;
197 1.1.4.2 nathanw void *context;
198 1.1.4.2 nathanw {
199 1.1.4.2 nathanw int pin, irq;
200 1.1.4.2 nathanw int bus, device, function;
201 1.1.4.2 nathanw pcireg_t intr, id;
202 1.1.4.2 nathanw int *pline = (int *)context;
203 1.1.4.2 nathanw int line = *pline;
204 1.1.4.2 nathanw
205 1.1.4.2 nathanw pci_decompose_tag(pc, tag, &bus, &device, &function);
206 1.1.4.2 nathanw id = pci_conf_read(pc, tag, PCI_ID_REG);
207 1.1.4.2 nathanw
208 1.1.4.2 nathanw intr = pci_conf_read(pc, tag, PCI_INTERRUPT_REG);
209 1.1.4.2 nathanw pin = PCI_INTERRUPT_PIN(intr);
210 1.1.4.2 nathanw irq = PCI_INTERRUPT_LINE(intr);
211 1.1.4.2 nathanw
212 1.1.4.2 nathanw #if 0
213 1.1.4.2 nathanw printf("do_header %02x:%02x:%02x pin=%d => line %d\n",
214 1.1.4.2 nathanw bus, device, function, pin, line);
215 1.1.4.2 nathanw #endif
216 1.1.4.2 nathanw
217 1.1.4.2 nathanw intr &= ~(PCI_INTERRUPT_LINE_MASK << PCI_INTERRUPT_LINE_SHIFT);
218 1.1.4.2 nathanw intr |= (line << PCI_INTERRUPT_LINE_SHIFT);
219 1.1.4.2 nathanw pci_conf_write(pc, tag, PCI_INTERRUPT_REG, intr);
220 1.1.4.2 nathanw
221 1.1.4.2 nathanw }
222 1.1.4.2 nathanw
223 1.1.4.2 nathanw /*
224 1.1.4.2 nathanw * This function takes a range of PCI bus numbers and
225 1.1.4.2 nathanw * allocates space for all devices found in this space (the BARs) from
226 1.1.4.2 nathanw * the rbus space maps (I/O and memory).
227 1.1.4.2 nathanw *
228 1.1.4.2 nathanw * It assumes that "rbus" is defined. The whole concept does.
229 1.1.4.2 nathanw *
230 1.1.4.2 nathanw * It uses pci_device_foreach_min() to call rbus_pci_phys_allocate.
231 1.1.4.2 nathanw * This function is mostly stolen from
232 1.1.4.2 nathanw * pci_addr_fixup.c:pciaddr_resource_reserve.
233 1.1.4.2 nathanw *
234 1.1.4.2 nathanw */
235 1.1.4.2 nathanw struct rbus_pci_addr_fixup_context {
236 1.1.4.2 nathanw struct ppb_cardbus_softc *csc;
237 1.1.4.2 nathanw cardbus_chipset_tag_t ct;
238 1.1.4.2 nathanw struct cardbus_softc *sc;
239 1.1.4.2 nathanw struct cardbus_attach_args *caa;
240 1.1.4.2 nathanw int minbus;
241 1.1.4.2 nathanw int maxbus;
242 1.1.4.2 nathanw bus_size_t *bussize_ioreqs;
243 1.1.4.2 nathanw bus_size_t *bussize_memreqs;
244 1.1.4.2 nathanw rbus_tag_t *iobustags;
245 1.1.4.2 nathanw rbus_tag_t *membustags;
246 1.1.4.2 nathanw };
247 1.1.4.2 nathanw
248 1.1.4.2 nathanw unsigned int
249 1.1.4.2 nathanw rbus_round_up(unsigned int size, unsigned int min)
250 1.1.4.2 nathanw {
251 1.1.4.2 nathanw unsigned int power2;
252 1.1.4.2 nathanw
253 1.1.4.2 nathanw if(size == 0) {
254 1.1.4.2 nathanw return 0;
255 1.1.4.2 nathanw }
256 1.1.4.2 nathanw
257 1.1.4.2 nathanw power2=min;
258 1.1.4.2 nathanw
259 1.1.4.2 nathanw while(power2 < (1 << 31) &&
260 1.1.4.2 nathanw power2 < size) {
261 1.1.4.2 nathanw power2 = power2 << 1;
262 1.1.4.2 nathanw }
263 1.1.4.2 nathanw
264 1.1.4.2 nathanw return power2;
265 1.1.4.2 nathanw }
266 1.1.4.2 nathanw
267 1.1.4.2 nathanw static void
268 1.1.4.2 nathanw rbus_pci_addr_fixup(struct ppb_cardbus_softc *csc,
269 1.1.4.2 nathanw cardbus_chipset_tag_t ct,
270 1.1.4.2 nathanw struct cardbus_softc *sc,
271 1.1.4.2 nathanw pci_chipset_tag_t pc,
272 1.1.4.2 nathanw struct cardbus_attach_args *caa,
273 1.1.4.2 nathanw int minbus, int maxbus)
274 1.1.4.2 nathanw {
275 1.1.4.2 nathanw struct rbus_pci_addr_fixup_context rct;
276 1.1.4.2 nathanw int size, busnum;
277 1.1.4.2 nathanw bus_addr_t start;
278 1.1.4.2 nathanw bus_space_handle_t handle;
279 1.1.4.2 nathanw u_int32_t reg;
280 1.1.4.2 nathanw
281 1.1.4.2 nathanw rct.csc=csc;
282 1.1.4.2 nathanw rct.ct=ct;
283 1.1.4.2 nathanw rct.sc=sc;
284 1.1.4.2 nathanw rct.caa=caa;
285 1.1.4.2 nathanw rct.minbus = minbus;
286 1.1.4.2 nathanw rct.maxbus = maxbus;
287 1.1.4.2 nathanw size = sizeof(bus_size_t)*(maxbus+1);
288 1.1.4.2 nathanw rct.bussize_ioreqs = alloca(size);
289 1.1.4.2 nathanw rct.bussize_memreqs = alloca(size);
290 1.1.4.2 nathanw rct.iobustags = alloca(maxbus * sizeof(rbus_tag_t));
291 1.1.4.2 nathanw rct.membustags = alloca(maxbus * sizeof(rbus_tag_t));
292 1.1.4.2 nathanw
293 1.1.4.2 nathanw bzero(rct.bussize_ioreqs, size);
294 1.1.4.2 nathanw bzero(rct.bussize_memreqs, size);
295 1.1.4.2 nathanw
296 1.1.4.2 nathanw printf("%s: sizing buses %d-%d\n",
297 1.1.4.2 nathanw rct.csc->sc_dev.dv_xname,
298 1.1.4.2 nathanw minbus, maxbus);
299 1.1.4.2 nathanw
300 1.1.4.2 nathanw pci_device_foreach_min(pc, minbus, maxbus,
301 1.1.4.2 nathanw rbus_pci_phys_countspace, &rct);
302 1.1.4.2 nathanw
303 1.1.4.2 nathanw /*
304 1.1.4.2 nathanw * we need to determine amount of address space for each
305 1.1.4.2 nathanw * bus. To do this, we have to roll up amounts and then
306 1.1.4.2 nathanw * we need to divide up the cardbus's extent to allocate
307 1.1.4.2 nathanw * some space to each bus.
308 1.1.4.2 nathanw */
309 1.1.4.2 nathanw
310 1.1.4.2 nathanw for(busnum=maxbus; busnum > minbus; busnum--) {
311 1.1.4.2 nathanw if(pci_bus_parent[busnum] != 0) {
312 1.1.4.2 nathanw if(pci_bus_parent[busnum] < minbus ||
313 1.1.4.2 nathanw pci_bus_parent[busnum] >= maxbus) {
314 1.1.4.2 nathanw printf("%s: bus %d has illegal parent %d\n",
315 1.1.4.2 nathanw rct.csc->sc_dev.dv_xname,
316 1.1.4.2 nathanw busnum, pci_bus_parent[busnum]);
317 1.1.4.2 nathanw continue;
318 1.1.4.2 nathanw }
319 1.1.4.2 nathanw
320 1.1.4.2 nathanw /* first round amount of space up */
321 1.1.4.2 nathanw rct.bussize_ioreqs[busnum] =
322 1.1.4.2 nathanw rbus_round_up(rct.bussize_ioreqs[busnum], PPB_IO_MIN);
323 1.1.4.2 nathanw rct.bussize_ioreqs[pci_bus_parent[busnum]] +=
324 1.1.4.2 nathanw rct.bussize_ioreqs[busnum];
325 1.1.4.2 nathanw
326 1.1.4.2 nathanw rct.bussize_memreqs[busnum] =
327 1.1.4.2 nathanw rbus_round_up(rct.bussize_memreqs[busnum], PPB_MEM_MIN);
328 1.1.4.2 nathanw rct.bussize_memreqs[pci_bus_parent[busnum]] +=
329 1.1.4.2 nathanw rct.bussize_memreqs[busnum];
330 1.1.4.2 nathanw
331 1.1.4.2 nathanw }
332 1.1.4.2 nathanw }
333 1.1.4.2 nathanw
334 1.1.4.2 nathanw rct.bussize_ioreqs[minbus] =
335 1.1.4.2 nathanw rbus_round_up(rct.bussize_ioreqs[minbus], 4096);
336 1.1.4.2 nathanw rct.bussize_memreqs[minbus] =
337 1.1.4.2 nathanw rbus_round_up(rct.bussize_memreqs[minbus], 8);
338 1.1.4.2 nathanw
339 1.1.4.2 nathanw printf("%s: total needs IO %08lx and MEM %08lx\n",
340 1.1.4.2 nathanw rct.csc->sc_dev.dv_xname,
341 1.1.4.2 nathanw rct.bussize_ioreqs[minbus], rct.bussize_memreqs[minbus]);
342 1.1.4.2 nathanw
343 1.1.4.2 nathanw if(!caa->ca_rbus_iot) {
344 1.1.4.2 nathanw panic("no iot bus");
345 1.1.4.2 nathanw }
346 1.1.4.2 nathanw
347 1.1.4.2 nathanw if(rct.bussize_ioreqs[minbus]) {
348 1.1.4.2 nathanw if(rbus_space_alloc(caa->ca_rbus_iot, 0,
349 1.1.4.2 nathanw rct.bussize_ioreqs[minbus],
350 1.1.4.2 nathanw rct.bussize_ioreqs[minbus]-1 /* mask */,
351 1.1.4.2 nathanw rct.bussize_ioreqs[minbus] /* align */,
352 1.1.4.2 nathanw /* flags */ 0,
353 1.1.4.2 nathanw &start,
354 1.1.4.2 nathanw &handle) != 0) {
355 1.1.4.2 nathanw panic("rbus_ppb: can not allocate %ld bytes in IO bus %d\n",
356 1.1.4.2 nathanw rct.bussize_ioreqs[minbus], minbus);
357 1.1.4.2 nathanw }
358 1.1.4.2 nathanw rct.iobustags[minbus]=rbus_new(caa->ca_rbus_iot,
359 1.1.4.2 nathanw start,
360 1.1.4.2 nathanw rct.bussize_ioreqs[minbus],
361 1.1.4.2 nathanw 0 /* offset to add to physical address
362 1.1.4.2 nathanw to make processor address */,
363 1.1.4.2 nathanw RBUS_SPACE_DEDICATE);
364 1.1.4.2 nathanw }
365 1.1.4.2 nathanw
366 1.1.4.2 nathanw if(rct.bussize_memreqs[minbus]) {
367 1.1.4.2 nathanw if(rbus_space_alloc(caa->ca_rbus_memt, 0,
368 1.1.4.2 nathanw rct.bussize_memreqs[minbus],
369 1.1.4.2 nathanw rct.bussize_memreqs[minbus]-1 /* mask */,
370 1.1.4.2 nathanw rct.bussize_memreqs[minbus] /* align */,
371 1.1.4.2 nathanw /* flags */ 0,
372 1.1.4.2 nathanw &start,
373 1.1.4.2 nathanw &handle) != 0) {
374 1.1.4.2 nathanw panic("%s: can not allocate %ld bytes in MEM bus %d\n",
375 1.1.4.2 nathanw rct.csc->sc_dev.dv_xname,
376 1.1.4.2 nathanw rct.bussize_memreqs[minbus], minbus);
377 1.1.4.2 nathanw }
378 1.1.4.2 nathanw rct.membustags[minbus]=rbus_new(caa->ca_rbus_memt,
379 1.1.4.2 nathanw start,
380 1.1.4.2 nathanw rct.bussize_memreqs[minbus],
381 1.1.4.2 nathanw 0 /* offset to add to physical
382 1.1.4.2 nathanw address to make processor
383 1.1.4.2 nathanw address */,
384 1.1.4.2 nathanw RBUS_SPACE_DEDICATE);
385 1.1.4.2 nathanw }
386 1.1.4.2 nathanw
387 1.1.4.2 nathanw for(busnum=minbus+1; busnum <= maxbus; busnum++) {
388 1.1.4.2 nathanw int busparent;
389 1.1.4.2 nathanw
390 1.1.4.2 nathanw busparent = pci_bus_parent[busnum];
391 1.1.4.2 nathanw
392 1.1.4.2 nathanw printf("%s: bus %d (parent=%d) needs IO %08lx and MEM %08lx\n",
393 1.1.4.2 nathanw rct.csc->sc_dev.dv_xname,
394 1.1.4.2 nathanw busnum,
395 1.1.4.2 nathanw busparent,
396 1.1.4.2 nathanw rct.bussize_ioreqs[busnum],
397 1.1.4.2 nathanw rct.bussize_memreqs[busnum]);
398 1.1.4.2 nathanw
399 1.1.4.2 nathanw if(busparent > maxbus) {
400 1.1.4.2 nathanw panic("rbus_ppb: illegal parent");
401 1.1.4.2 nathanw }
402 1.1.4.2 nathanw
403 1.1.4.2 nathanw if(rct.bussize_ioreqs[busnum]) {
404 1.1.4.2 nathanw if(rbus_space_alloc(rct.iobustags[busparent],
405 1.1.4.2 nathanw 0,
406 1.1.4.2 nathanw rct.bussize_ioreqs[busnum],
407 1.1.4.2 nathanw rct.bussize_ioreqs[busnum]-1 /*mask */,
408 1.1.4.2 nathanw rct.bussize_ioreqs[busnum] /* align */,
409 1.1.4.2 nathanw /* flags */ 0,
410 1.1.4.2 nathanw &start,
411 1.1.4.2 nathanw &handle) != 0) {
412 1.1.4.2 nathanw panic("rbus_ppb: can not allocate %ld bytes in IO bus %d\n",
413 1.1.4.2 nathanw rct.bussize_ioreqs[busnum], busnum);
414 1.1.4.2 nathanw }
415 1.1.4.2 nathanw rct.iobustags[busnum]=rbus_new(rct.iobustags[busparent],
416 1.1.4.2 nathanw start,
417 1.1.4.2 nathanw rct.bussize_ioreqs[busnum],
418 1.1.4.2 nathanw 0 /* offset to add to physical
419 1.1.4.2 nathanw address
420 1.1.4.2 nathanw to make processor address */,
421 1.1.4.2 nathanw RBUS_SPACE_DEDICATE);
422 1.1.4.2 nathanw
423 1.1.4.2 nathanw /* program the bridge */
424 1.1.4.2 nathanw
425 1.1.4.2 nathanw /* enable I/O space */
426 1.1.4.2 nathanw reg = pci_conf_read(pc, pci_bus_tag[busnum],
427 1.1.4.2 nathanw PCI_COMMAND_STATUS_REG);
428 1.1.4.2 nathanw reg |= PCI_COMMAND_IO_ENABLE | PCI_COMMAND_MASTER_ENABLE;
429 1.1.4.2 nathanw pci_conf_write(pc, pci_bus_tag[busnum],
430 1.1.4.2 nathanw PCI_COMMAND_STATUS_REG, reg);
431 1.1.4.2 nathanw
432 1.1.4.2 nathanw /* now init the limit register for I/O */
433 1.1.4.2 nathanw pci_conf_write(pc, pci_bus_tag[busnum], PPB_REG_IOSTATUS,
434 1.1.4.2 nathanw (((start & 0xf000) >> 8) << PPB_IOBASE_SHIFT) |
435 1.1.4.2 nathanw ((((start +
436 1.1.4.2 nathanw rct.bussize_ioreqs[busnum] +
437 1.1.4.2 nathanw 4095) & 0xf000) >> 8) << PPB_IOLIMIT_SHIFT));
438 1.1.4.2 nathanw }
439 1.1.4.2 nathanw
440 1.1.4.2 nathanw if(rct.bussize_memreqs[busnum]) {
441 1.1.4.2 nathanw if(rbus_space_alloc(rct.membustags[busparent],
442 1.1.4.2 nathanw 0,
443 1.1.4.2 nathanw rct.bussize_memreqs[busnum] /* size */,
444 1.1.4.2 nathanw rct.bussize_memreqs[busnum]-1 /*mask */,
445 1.1.4.2 nathanw rct.bussize_memreqs[busnum] /* align */,
446 1.1.4.2 nathanw /* flags */ 0,
447 1.1.4.2 nathanw &start,
448 1.1.4.2 nathanw &handle) != 0) {
449 1.1.4.2 nathanw panic("rbus_ppb: can not allocate %ld bytes in MEM bus %d\n",
450 1.1.4.2 nathanw rct.bussize_memreqs[busnum], busnum);
451 1.1.4.2 nathanw }
452 1.1.4.2 nathanw rct.membustags[busnum]=rbus_new(rct.membustags[busparent],
453 1.1.4.2 nathanw start,
454 1.1.4.2 nathanw rct.bussize_memreqs[busnum],
455 1.1.4.2 nathanw 0 /* offset to add to physical
456 1.1.4.2 nathanw address to make processor
457 1.1.4.2 nathanw address */,
458 1.1.4.2 nathanw RBUS_SPACE_DEDICATE);
459 1.1.4.2 nathanw
460 1.1.4.2 nathanw /* program the bridge */
461 1.1.4.2 nathanw /* enable memory space */
462 1.1.4.2 nathanw reg = pci_conf_read(pc, pci_bus_tag[busnum],
463 1.1.4.2 nathanw PCI_COMMAND_STATUS_REG);
464 1.1.4.2 nathanw reg |= PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE;
465 1.1.4.2 nathanw pci_conf_write(pc, pci_bus_tag[busnum],
466 1.1.4.2 nathanw PCI_COMMAND_STATUS_REG, reg);
467 1.1.4.2 nathanw
468 1.1.4.2 nathanw /* now init the limit register for memory */
469 1.1.4.2 nathanw pci_conf_write(pc, pci_bus_tag[busnum], PPB_REG_MEM,
470 1.1.4.2 nathanw ((start & PPB_MEM_MASK)
471 1.1.4.2 nathanw >> PPB_MEM_SHIFT) << PPB_MEMBASE_SHIFT |
472 1.1.4.2 nathanw (((start +
473 1.1.4.2 nathanw rct.bussize_memreqs[busnum] +
474 1.1.4.2 nathanw PPB_MEM_MIN-1) >> PPB_MEM_SHIFT)
475 1.1.4.2 nathanw << PPB_MEMLIMIT_SHIFT));
476 1.1.4.2 nathanw
477 1.1.4.2 nathanw /* and set the prefetchable limits as well */
478 1.1.4.2 nathanw pci_conf_write(pc, pci_bus_tag[busnum], PPB_REG_PREFMEM,
479 1.1.4.2 nathanw ((start & PPB_MEM_MASK)
480 1.1.4.2 nathanw >> PPB_MEM_SHIFT) << PPB_MEMBASE_SHIFT |
481 1.1.4.2 nathanw (((start +
482 1.1.4.2 nathanw rct.bussize_memreqs[busnum] +
483 1.1.4.2 nathanw PPB_MEM_MIN-1) >> PPB_MEM_SHIFT)
484 1.1.4.2 nathanw << PPB_MEMLIMIT_SHIFT));
485 1.1.4.2 nathanw
486 1.1.4.2 nathanw /* pci_conf_print(pc, pci_bus_tag[busnum], NULL); */
487 1.1.4.2 nathanw }
488 1.1.4.2 nathanw }
489 1.1.4.2 nathanw
490 1.1.4.2 nathanw printf("%s: configuring buses %d-%d\n",
491 1.1.4.2 nathanw rct.csc->sc_dev.dv_xname,
492 1.1.4.2 nathanw minbus, maxbus);
493 1.1.4.2 nathanw pci_device_foreach_min(pc, minbus, maxbus,
494 1.1.4.2 nathanw rbus_pci_phys_allocate, &rct);
495 1.1.4.2 nathanw }
496 1.1.4.2 nathanw
497 1.1.4.2 nathanw static void
498 1.1.4.2 nathanw rbus_pci_phys_countspace(pc, tag, context)
499 1.1.4.2 nathanw pci_chipset_tag_t pc;
500 1.1.4.2 nathanw pcitag_t tag;
501 1.1.4.2 nathanw void *context;
502 1.1.4.2 nathanw {
503 1.1.4.2 nathanw int bus, device, function;
504 1.1.4.2 nathanw struct rbus_pci_addr_fixup_context *rct =
505 1.1.4.2 nathanw (struct rbus_pci_addr_fixup_context *)context;
506 1.1.4.2 nathanw
507 1.1.4.2 nathanw pci_decompose_tag(pc, tag, &bus, &device, &function);
508 1.1.4.2 nathanw
509 1.1.4.2 nathanw printf("%s: configuring device %02x:%02x:%02x\n",
510 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname,
511 1.1.4.2 nathanw bus, device, function);
512 1.1.4.2 nathanw
513 1.1.4.2 nathanw pciaddr_resource_manage(pc, tag,
514 1.1.4.2 nathanw rbus_do_phys_countspace, context);
515 1.1.4.2 nathanw }
516 1.1.4.2 nathanw
517 1.1.4.2 nathanw
518 1.1.4.2 nathanw int
519 1.1.4.2 nathanw rbus_do_phys_countspace(pc, tag, mapreg, ctx, type, addr, size)
520 1.1.4.2 nathanw pci_chipset_tag_t pc;
521 1.1.4.2 nathanw pcitag_t tag;
522 1.1.4.2 nathanw void *ctx;
523 1.1.4.2 nathanw int mapreg, type;
524 1.1.4.2 nathanw bus_addr_t *addr;
525 1.1.4.2 nathanw bus_size_t size;
526 1.1.4.2 nathanw {
527 1.1.4.2 nathanw struct rbus_pci_addr_fixup_context *rct =
528 1.1.4.2 nathanw (struct rbus_pci_addr_fixup_context *)ctx;
529 1.1.4.2 nathanw int bus, device, function;
530 1.1.4.2 nathanw
531 1.1.4.2 nathanw pci_decompose_tag(pc, tag, &bus, &device, &function);
532 1.1.4.2 nathanw
533 1.1.4.2 nathanw if(size > (1<<24)) {
534 1.1.4.2 nathanw printf("%s: skipping huge space request of size=%08x\n",
535 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname, (unsigned int)size);
536 1.1.4.2 nathanw return 0;
537 1.1.4.2 nathanw }
538 1.1.4.2 nathanw
539 1.1.4.2 nathanw if(PCI_MAPREG_TYPE(type) == PCI_MAPREG_TYPE_IO) {
540 1.1.4.2 nathanw rct->bussize_ioreqs[bus] += size;
541 1.1.4.2 nathanw } else {
542 1.1.4.2 nathanw rct->bussize_memreqs[bus]+= size;
543 1.1.4.2 nathanw }
544 1.1.4.2 nathanw
545 1.1.4.2 nathanw return 0;
546 1.1.4.2 nathanw }
547 1.1.4.2 nathanw
548 1.1.4.2 nathanw static void
549 1.1.4.2 nathanw rbus_pci_phys_allocate(pc, tag, context)
550 1.1.4.2 nathanw pci_chipset_tag_t pc;
551 1.1.4.2 nathanw pcitag_t tag;
552 1.1.4.2 nathanw void *context;
553 1.1.4.2 nathanw {
554 1.1.4.2 nathanw int bus, device, function, command;
555 1.1.4.2 nathanw struct rbus_pci_addr_fixup_context *rct =
556 1.1.4.2 nathanw (struct rbus_pci_addr_fixup_context *)context;
557 1.1.4.2 nathanw //cardbus_chipset_tag_t ct = rct->ct;
558 1.1.4.2 nathanw // struct cardbus_softc *sc = rct->sc;
559 1.1.4.2 nathanw
560 1.1.4.2 nathanw pci_decompose_tag(pc, tag, &bus, &device, &function);
561 1.1.4.2 nathanw
562 1.1.4.2 nathanw printf("%s: configuring device %02x:%02x:%02x\n",
563 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname,
564 1.1.4.2 nathanw bus, device, function);
565 1.1.4.2 nathanw
566 1.1.4.2 nathanw pciaddr_resource_manage(pc, tag,
567 1.1.4.2 nathanw rbus_do_phys_allocate, context);
568 1.1.4.2 nathanw
569 1.1.4.2 nathanw /* now turn the device's memory and I/O on */
570 1.1.4.2 nathanw command = pci_conf_read(pc, tag, PCI_COMMAND_STATUS_REG);
571 1.1.4.2 nathanw command |= PCI_COMMAND_IO_ENABLE|PCI_COMMAND_MEM_ENABLE;
572 1.1.4.2 nathanw pci_conf_write(pc, tag, PCI_COMMAND_STATUS_REG, command);
573 1.1.4.2 nathanw }
574 1.1.4.2 nathanw
575 1.1.4.2 nathanw int
576 1.1.4.2 nathanw rbus_do_phys_allocate(pc, tag, mapreg, ctx, type, addr, size)
577 1.1.4.2 nathanw pci_chipset_tag_t pc;
578 1.1.4.2 nathanw pcitag_t tag;
579 1.1.4.2 nathanw void *ctx;
580 1.1.4.2 nathanw int mapreg, type;
581 1.1.4.2 nathanw bus_addr_t *addr;
582 1.1.4.2 nathanw bus_size_t size;
583 1.1.4.2 nathanw {
584 1.1.4.2 nathanw struct rbus_pci_addr_fixup_context *rct =
585 1.1.4.2 nathanw (struct rbus_pci_addr_fixup_context *)ctx;
586 1.1.4.2 nathanw cardbus_chipset_tag_t ct = rct->ct;
587 1.1.4.2 nathanw struct cardbus_softc *sc = rct->sc;
588 1.1.4.2 nathanw cardbus_function_t *cf = sc->sc_cf;
589 1.1.4.2 nathanw rbus_tag_t rbustag;
590 1.1.4.2 nathanw bus_space_tag_t bustag;
591 1.1.4.2 nathanw bus_addr_t mask = size -1;
592 1.1.4.2 nathanw bus_addr_t base = 0;
593 1.1.4.2 nathanw bus_space_handle_t handle;
594 1.1.4.2 nathanw int busflags = 0;
595 1.1.4.2 nathanw int flags = 0;
596 1.1.4.2 nathanw char *bustype;
597 1.1.4.2 nathanw int bus, device, function;
598 1.1.4.2 nathanw
599 1.1.4.2 nathanw pci_decompose_tag(pc, tag, &bus, &device, &function);
600 1.1.4.2 nathanw
601 1.1.4.2 nathanw /*
602 1.1.4.2 nathanw * some devices come up with garbage in them (Tulip?)
603 1.1.4.2 nathanw * we are in charge here, so give them address
604 1.1.4.2 nathanw * space anyway.
605 1.1.4.2 nathanw *
606 1.1.4.2 nathanw * XXX this may be due to no secondary PCI reset!!!
607 1.1.4.2 nathanw */
608 1.1.4.2 nathanw #if 0
609 1.1.4.2 nathanw if (*addr) {
610 1.1.4.2 nathanw printf("Already allocated space at %08x\n",
611 1.1.4.2 nathanw (unsigned int)*addr);
612 1.1.4.2 nathanw return (0);
613 1.1.4.2 nathanw }
614 1.1.4.2 nathanw #endif
615 1.1.4.2 nathanw
616 1.1.4.2 nathanw if(size > (1<<24)) {
617 1.1.4.2 nathanw printf("%s: skipping huge space request of size=%08x\n",
618 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname, (unsigned int)size);
619 1.1.4.2 nathanw return 0;
620 1.1.4.2 nathanw }
621 1.1.4.2 nathanw
622 1.1.4.2 nathanw if(PCI_MAPREG_TYPE(type) == PCI_MAPREG_TYPE_IO) {
623 1.1.4.2 nathanw bustag = sc->sc_iot;
624 1.1.4.2 nathanw rbustag = rct->iobustags[bus];
625 1.1.4.2 nathanw bustype = "io";
626 1.1.4.2 nathanw } else {
627 1.1.4.2 nathanw bustag = sc->sc_memt;
628 1.1.4.2 nathanw rbustag = rct->membustags[bus];
629 1.1.4.2 nathanw bustype = "mem";
630 1.1.4.2 nathanw }
631 1.1.4.2 nathanw
632 1.1.4.2 nathanw if((*cf->cardbus_space_alloc)(ct, rbustag, base, size,
633 1.1.4.2 nathanw mask, size, busflags|flags,
634 1.1.4.2 nathanw addr, &handle)) {
635 1.1.4.2 nathanw printf("%s: no available resources (size=%08x) for bar %2d. fixup failed\n",
636 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname, (unsigned int)size, mapreg);
637 1.1.4.2 nathanw
638 1.1.4.2 nathanw *addr = 0;
639 1.1.4.2 nathanw pci_conf_write(pc, tag, mapreg, *addr);
640 1.1.4.2 nathanw return (1);
641 1.1.4.2 nathanw }
642 1.1.4.2 nathanw
643 1.1.4.2 nathanw printf("%s: alloc %s space of size %08x for %02d:%02d:%02d -> %08x\n",
644 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname,
645 1.1.4.2 nathanw bustype,
646 1.1.4.2 nathanw (unsigned int)size,
647 1.1.4.2 nathanw bus, device, function, (unsigned int)*addr);
648 1.1.4.2 nathanw
649 1.1.4.2 nathanw /* write new address to PCI device configuration header */
650 1.1.4.2 nathanw pci_conf_write(pc, tag, mapreg, *addr);
651 1.1.4.2 nathanw
652 1.1.4.2 nathanw /* check */
653 1.1.4.2 nathanw {
654 1.1.4.2 nathanw DPRINTF(("%s: pci_addr_fixup: ",
655 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname));
656 1.1.4.2 nathanw #ifdef CBB_DEBUG
657 1.1.4.2 nathanw if(rbus_ppb_debug) { pciaddr_print_devid(pc, tag); }
658 1.1.4.2 nathanw #endif
659 1.1.4.2 nathanw }
660 1.1.4.2 nathanw
661 1.1.4.2 nathanw /* double check that the value got inserted correctly */
662 1.1.4.2 nathanw if (pciaddr_ioaddr(pci_conf_read(pc, tag, mapreg)) != *addr) {
663 1.1.4.2 nathanw pci_conf_write(pc, tag, mapreg, 0); /* clear */
664 1.1.4.2 nathanw printf("%s: fixup failed. (new address=%#x)\n",
665 1.1.4.2 nathanw rct->csc->sc_dev.dv_xname,
666 1.1.4.2 nathanw (unsigned)*addr);
667 1.1.4.2 nathanw return (1);
668 1.1.4.2 nathanw }
669 1.1.4.2 nathanw
670 1.1.4.2 nathanw DPRINTF(("new address 0x%08x\n",
671 1.1.4.2 nathanw (unsigned)*addr));
672 1.1.4.2 nathanw
673 1.1.4.2 nathanw return (0);
674 1.1.4.2 nathanw }
675 1.1.4.2 nathanw
676 1.1.4.2 nathanw static void
677 1.1.4.2 nathanw ppb_cardbus_attach(parent, self, aux)
678 1.1.4.2 nathanw struct device *parent, *self;
679 1.1.4.2 nathanw void *aux;
680 1.1.4.2 nathanw {
681 1.1.4.2 nathanw struct ppb_cardbus_softc *csc = (struct ppb_cardbus_softc *) self;
682 1.1.4.2 nathanw struct cardbus_softc *parent_sc =
683 1.1.4.2 nathanw (struct cardbus_softc *) csc->sc_dev.dv_parent;
684 1.1.4.2 nathanw struct cardbus_attach_args *ca = aux;
685 1.1.4.2 nathanw cardbus_devfunc_t ct = ca->ca_ct;
686 1.1.4.2 nathanw cardbus_chipset_tag_t cc = ct->ct_cc;
687 1.1.4.2 nathanw cardbus_function_tag_t cf = ct->ct_cf;
688 1.1.4.2 nathanw struct pccbb_softc *psc = (struct pccbb_softc *)cc;
689 1.1.4.2 nathanw struct pcibus_attach_args pba;
690 1.1.4.2 nathanw char devinfo[256];
691 1.1.4.2 nathanw pcireg_t busdata;
692 1.1.4.2 nathanw int mybus, rv;
693 1.1.4.2 nathanw u_int16_t pciirq;
694 1.1.4.2 nathanw int minbus, maxbus;
695 1.1.4.2 nathanw
696 1.1.4.2 nathanw mybus = ct->ct_bus;
697 1.1.4.2 nathanw pciirq = 0;
698 1.1.4.2 nathanw rv = 0;
699 1.1.4.2 nathanw
700 1.1.4.2 nathanw /* shut up compiler */
701 1.1.4.2 nathanw csc->foo=parent_sc->sc_intrline;
702 1.1.4.2 nathanw
703 1.1.4.2 nathanw
704 1.1.4.2 nathanw pci_devinfo(ca->ca_id, ca->ca_class, 0, devinfo);
705 1.1.4.2 nathanw printf(": %s (rev. 0x%02x)\n", devinfo, PCI_REVISION(ca->ca_class));
706 1.1.4.2 nathanw
707 1.1.4.2 nathanw busdata = cardbus_conf_read(cc, cf, ca->ca_tag, PPB_REG_BUSINFO);
708 1.1.4.2 nathanw minbus = pcibios_max_bus;
709 1.1.4.2 nathanw
710 1.1.4.2 nathanw if (PPB_BUSINFO_SECONDARY(busdata) == 0) {
711 1.1.4.2 nathanw printf("%s: not configured by system firmware calling pci_bus_fixup(%d)\n",
712 1.1.4.2 nathanw self->dv_xname, 0);
713 1.1.4.2 nathanw
714 1.1.4.2 nathanw /*
715 1.1.4.2 nathanw * first, pull the reset wire on the secondary bridge
716 1.1.4.2 nathanw * to clear all devices
717 1.1.4.2 nathanw */
718 1.1.4.2 nathanw busdata = cardbus_conf_read(cc, cf, ca->ca_tag,
719 1.1.4.2 nathanw PPB_REG_BRIDGECONTROL);
720 1.1.4.2 nathanw cardbus_conf_write(cc, cf, ca->ca_tag, PPB_REG_BRIDGECONTROL,
721 1.1.4.2 nathanw busdata | PPB_BC_SECONDARY_RESET);
722 1.1.4.2 nathanw delay(1);
723 1.1.4.2 nathanw cardbus_conf_write(cc, cf, ca->ca_tag, PPB_REG_BRIDGECONTROL,
724 1.1.4.2 nathanw busdata);
725 1.1.4.2 nathanw
726 1.1.4.2 nathanw /* then go initialize the bridge control registers */
727 1.1.4.2 nathanw maxbus = pci_bus_fixup(psc->sc_pc, 0);
728 1.1.4.2 nathanw }
729 1.1.4.2 nathanw
730 1.1.4.2 nathanw busdata = cardbus_conf_read(cc, cf, ca->ca_tag, PPB_REG_BUSINFO);
731 1.1.4.2 nathanw if(PPB_BUSINFO_SECONDARY(busdata) == 0) {
732 1.1.4.2 nathanw printf("%s: still not configured, not fixable.\n",
733 1.1.4.2 nathanw self->dv_xname);
734 1.1.4.2 nathanw return;
735 1.1.4.2 nathanw }
736 1.1.4.2 nathanw
737 1.1.4.2 nathanw #if 0
738 1.1.4.2 nathanw minbus = PPB_BUSINFO_SECONDARY(busdata);
739 1.1.4.2 nathanw maxbus = PPB_BUSINFO_SUBORDINATE(busdata);
740 1.1.4.2 nathanw #endif
741 1.1.4.2 nathanw
742 1.1.4.2 nathanw /* now, go and assign addresses for the new devices */
743 1.1.4.2 nathanw rbus_pci_addr_fixup(csc, cc, parent_sc,
744 1.1.4.2 nathanw psc->sc_pc,
745 1.1.4.2 nathanw ca,
746 1.1.4.2 nathanw minbus, maxbus);
747 1.1.4.2 nathanw
748 1.1.4.2 nathanw /*
749 1.1.4.2 nathanw * now configure all connected devices to the IRQ which
750 1.1.4.2 nathanw * was assigned to this slot, as they will all arrive from
751 1.1.4.2 nathanw * that IRQ.
752 1.1.4.2 nathanw */
753 1.1.4.2 nathanw rbus_intr_fixup(psc->sc_pc, minbus, maxbus, ca->ca_intrline);
754 1.1.4.2 nathanw
755 1.1.4.2 nathanw /*
756 1.1.4.2 nathanw * enable direct routing of interrupts. We do this because
757 1.1.4.2 nathanw * we can not manage to get pccb_intr_establish() called until
758 1.1.4.2 nathanw * PCI subsystem is merged with rbus. The major thing that this
759 1.1.4.2 nathanw * routine does is avoid calling the driver's interrupt routine
760 1.1.4.2 nathanw * when the card has been removed.
761 1.1.4.2 nathanw *
762 1.1.4.2 nathanw * The rbus_ppb.c can not cope with card desertions until the merging
763 1.1.4.2 nathanw * anyway.
764 1.1.4.2 nathanw */
765 1.1.4.2 nathanw pccbb_intr_route(psc);
766 1.1.4.2 nathanw
767 1.1.4.2 nathanw /*
768 1.1.4.2 nathanw * Attach the PCI bus than hangs off of it.
769 1.1.4.2 nathanw *
770 1.1.4.2 nathanw * XXX Don't pass-through Memory Read Multiple. Should we?
771 1.1.4.2 nathanw * XXX Consult the spec...
772 1.1.4.2 nathanw */
773 1.1.4.2 nathanw pba.pba_busname = "pci";
774 1.1.4.2 nathanw pba.pba_iot = ca->ca_iot;
775 1.1.4.2 nathanw pba.pba_memt = ca->ca_memt;
776 1.1.4.2 nathanw pba.pba_dmat = ca->ca_dmat;
777 1.1.4.2 nathanw pba.pba_pc = psc->sc_pc;
778 1.1.4.2 nathanw pba.pba_flags = PCI_FLAGS_IO_ENABLED|PCI_FLAGS_MEM_ENABLED;
779 1.1.4.2 nathanw pba.pba_bus = PPB_BUSINFO_SECONDARY(busdata);
780 1.1.4.2 nathanw /*pba.pba_intrswiz = parent_sc->sc_intrswiz; */
781 1.1.4.2 nathanw pba.pba_intrtag = psc->sc_pa.pa_intrtag;
782 1.1.4.2 nathanw
783 1.1.4.2 nathanw config_found(self, &pba, rppbprint);
784 1.1.4.2 nathanw }
785 1.1.4.2 nathanw
786 1.1.4.2 nathanw void
787 1.1.4.2 nathanw ppb_cardbus_setup(struct ppb_softc * sc)
788 1.1.4.2 nathanw {
789 1.1.4.2 nathanw struct ppb_cardbus_softc *csc = (struct ppb_cardbus_softc *) sc;
790 1.1.4.2 nathanw #if 0
791 1.1.4.2 nathanw cardbus_chipset_tag_t cc = psc->sc_cc;
792 1.1.4.2 nathanw cardbus_function_tag_t cf = psc->sc_cf;
793 1.1.4.2 nathanw #endif
794 1.1.4.2 nathanw
795 1.1.4.2 nathanw /* shut up compiler */
796 1.1.4.2 nathanw csc->foo=2;
797 1.1.4.2 nathanw
798 1.1.4.2 nathanw printf("ppb_cardbus_setup called\n");
799 1.1.4.2 nathanw #if 0
800 1.1.4.2 nathanw /* not sure what to do here */
801 1.1.4.2 nathanw cardbustag_t tag = cardbus_make_tag(cc, cf, csc->ct->ct_bus,
802 1.1.4.2 nathanw csc->ct->ct_dev, csc->ct->ct_func);
803 1.1.4.2 nathanw
804 1.1.4.2 nathanw command = Cardbus_conf_read(csc->ct, tag, CARDBUS_COMMAND_STATUS_REG);
805 1.1.4.2 nathanw if (csc->base0_reg) {
806 1.1.4.2 nathanw Cardbus_conf_write(csc->ct, tag,
807 1.1.4.2 nathanw CARDBUS_BASE0_REG, csc->base0_reg);
808 1.1.4.2 nathanw (cf->cardbus_ctrl) (cc, CARDBUS_MEM_ENABLE);
809 1.1.4.2 nathanw command |= CARDBUS_COMMAND_MEM_ENABLE |
810 1.1.4.2 nathanw CARDBUS_COMMAND_MASTER_ENABLE;
811 1.1.4.2 nathanw } else if (csc->base1_reg) {
812 1.1.4.2 nathanw Cardbus_conf_write(csc->ct, tag,
813 1.1.4.2 nathanw CARDBUS_BASE1_REG, csc->base1_reg);
814 1.1.4.2 nathanw (cf->cardbus_ctrl) (cc, CARDBUS_IO_ENABLE);
815 1.1.4.2 nathanw command |= (CARDBUS_COMMAND_IO_ENABLE |
816 1.1.4.2 nathanw CARDBUS_COMMAND_MASTER_ENABLE);
817 1.1.4.2 nathanw }
818 1.1.4.2 nathanw
819 1.1.4.2 nathanw (cf->cardbus_ctrl) (cc, CARDBUS_BM_ENABLE);
820 1.1.4.2 nathanw
821 1.1.4.2 nathanw /* enable the card */
822 1.1.4.2 nathanw Cardbus_conf_write(csc->ct, tag, CARDBUS_COMMAND_STATUS_REG, command);
823 1.1.4.2 nathanw #endif
824 1.1.4.2 nathanw }
825 1.1.4.2 nathanw
826 1.1.4.2 nathanw int
827 1.1.4.2 nathanw ppb_cardbus_enable(struct ppb_softc * sc)
828 1.1.4.2 nathanw {
829 1.1.4.2 nathanw #if 0
830 1.1.4.2 nathanw struct ppb_cardbus_softc *csc = (struct fxp_cardbus_softc *) sc;
831 1.1.4.2 nathanw struct cardbus_softc *psc =
832 1.1.4.2 nathanw (struct cardbus_softc *) sc->sc_dev.dv_parent;
833 1.1.4.2 nathanw cardbus_chipset_tag_t cc = psc->sc_cc;
834 1.1.4.2 nathanw cardbus_function_tag_t cf = psc->sc_cf;
835 1.1.4.2 nathanw
836 1.1.4.2 nathanw Cardbus_function_enable(csc->ct);
837 1.1.4.2 nathanw
838 1.1.4.2 nathanw fxp_cardbus_setup(sc);
839 1.1.4.2 nathanw
840 1.1.4.2 nathanw /* Map and establish the interrupt. */
841 1.1.4.2 nathanw
842 1.1.4.2 nathanw sc->sc_ih = cardbus_intr_establish(cc, cf, psc->sc_intrline, IPL_NET,
843 1.1.4.2 nathanw fxp_intr, sc);
844 1.1.4.2 nathanw if (NULL == sc->sc_ih) {
845 1.1.4.2 nathanw printf("%s: couldn't establish interrupt\n",
846 1.1.4.2 nathanw sc->sc_dev.dv_xname);
847 1.1.4.2 nathanw return 1;
848 1.1.4.2 nathanw }
849 1.1.4.2 nathanw
850 1.1.4.2 nathanw printf("%s: interrupting at %d\n", sc->sc_dev.dv_xname,
851 1.1.4.2 nathanw psc->sc_intrline);
852 1.1.4.2 nathanw
853 1.1.4.2 nathanw #endif
854 1.1.4.2 nathanw return 0;
855 1.1.4.2 nathanw }
856 1.1.4.2 nathanw
857 1.1.4.2 nathanw void
858 1.1.4.2 nathanw ppb_cardbus_disable(struct ppb_softc * sc)
859 1.1.4.2 nathanw {
860 1.1.4.2 nathanw #if 0
861 1.1.4.2 nathanw struct cardbus_softc *psc =
862 1.1.4.2 nathanw (struct cardbus_softc *) sc->sc_dev.dv_parent;
863 1.1.4.2 nathanw cardbus_chipset_tag_t cc = psc->sc_cc;
864 1.1.4.2 nathanw cardbus_function_tag_t cf = psc->sc_cf;
865 1.1.4.2 nathanw
866 1.1.4.2 nathanw /* Remove interrupt handler. */
867 1.1.4.2 nathanw cardbus_intr_disestablish(cc, cf, sc->sc_ih);
868 1.1.4.2 nathanw
869 1.1.4.2 nathanw Cardbus_function_disable(((struct fxp_cardbus_softc *) sc)->ct);
870 1.1.4.2 nathanw #endif
871 1.1.4.2 nathanw }
872 1.1.4.2 nathanw
873 1.1.4.2 nathanw static int
874 1.1.4.2 nathanw ppb_cardbus_detach(self, flags)
875 1.1.4.2 nathanw struct device *self;
876 1.1.4.2 nathanw int flags;
877 1.1.4.2 nathanw {
878 1.1.4.2 nathanw /* struct ppb_softc *sc = (struct ppb_softc *) self;*/
879 1.1.4.2 nathanw struct ppb_cardbus_softc *csc = (struct ppb_cardbus_softc *) self;
880 1.1.4.2 nathanw
881 1.1.4.2 nathanw #if 0
882 1.1.4.2 nathanw struct cardbus_devfunc *ct = csc->ct;
883 1.1.4.2 nathanw int rv, reg;
884 1.1.4.2 nathanw
885 1.1.4.2 nathanw #ifdef DIAGNOSTIC
886 1.1.4.2 nathanw if (ct == NULL)
887 1.1.4.2 nathanw panic("%s: data structure lacks\n", sc->sc_dev.dv_xname);
888 1.1.4.2 nathanw #endif
889 1.1.4.2 nathanw
890 1.1.4.2 nathanw rv = fxp_detach(sc);
891 1.1.4.2 nathanw if (rv == 0) {
892 1.1.4.2 nathanw /*
893 1.1.4.2 nathanw * Unhook the interrupt handler.
894 1.1.4.2 nathanw */
895 1.1.4.2 nathanw cardbus_intr_disestablish(ct->ct_cc, ct->ct_cf, sc->sc_ih);
896 1.1.4.2 nathanw
897 1.1.4.2 nathanw /*
898 1.1.4.2 nathanw * release bus space and close window
899 1.1.4.2 nathanw */
900 1.1.4.2 nathanw if (csc->base0_reg)
901 1.1.4.2 nathanw reg = CARDBUS_BASE0_REG;
902 1.1.4.2 nathanw else
903 1.1.4.2 nathanw reg = CARDBUS_BASE1_REG;
904 1.1.4.2 nathanw Cardbus_mapreg_unmap(ct, reg, sc->sc_st, sc->sc_sh, csc->size);
905 1.1.4.2 nathanw }
906 1.1.4.2 nathanw return (rv);
907 1.1.4.2 nathanw
908 1.1.4.2 nathanw #endif
909 1.1.4.2 nathanw csc->foo=1;
910 1.1.4.2 nathanw return 0;
911 1.1.4.2 nathanw
912 1.1.4.2 nathanw }
913 1.1.4.2 nathanw
914 1.1.4.2 nathanw int
915 1.1.4.2 nathanw ppb_activate(self, act)
916 1.1.4.2 nathanw struct device *self;
917 1.1.4.2 nathanw enum devact act;
918 1.1.4.2 nathanw {
919 1.1.4.2 nathanw printf("ppb_activate called\n");
920 1.1.4.2 nathanw return 0;
921 1.1.4.2 nathanw }
922 1.1.4.2 nathanw
923