]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/dev/pci/pci_pci.c
MFC 237008,237271,237272,237673:
[FreeBSD/stable/9.git] / sys / dev / pci / pci_pci.c
1 /*-
2  * Copyright (c) 1994,1995 Stefan Esser, Wolfgang StanglMeier
3  * Copyright (c) 2000 Michael Smith <msmith@freebsd.org>
4  * Copyright (c) 2000 BSDi
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. The name of the author may not be used to endorse or promote products
16  *    derived from this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  */
30
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33
34 /*
35  * PCI:PCI bridge support.
36  */
37
38 #include <sys/param.h>
39 #include <sys/bus.h>
40 #include <sys/kernel.h>
41 #include <sys/malloc.h>
42 #include <sys/module.h>
43 #include <sys/rman.h>
44 #include <sys/sysctl.h>
45 #include <sys/systm.h>
46
47 #include <dev/pci/pcivar.h>
48 #include <dev/pci/pcireg.h>
49 #include <dev/pci/pci_private.h>
50 #include <dev/pci/pcib_private.h>
51
52 #include "pcib_if.h"
53
54 static int              pcib_probe(device_t dev);
55 static int              pcib_suspend(device_t dev);
56 static int              pcib_resume(device_t dev);
57 static int              pcib_power_for_sleep(device_t pcib, device_t dev,
58                             int *pstate);
59
60 static device_method_t pcib_methods[] = {
61     /* Device interface */
62     DEVMETHOD(device_probe,             pcib_probe),
63     DEVMETHOD(device_attach,            pcib_attach),
64     DEVMETHOD(device_detach,            bus_generic_detach),
65     DEVMETHOD(device_shutdown,          bus_generic_shutdown),
66     DEVMETHOD(device_suspend,           pcib_suspend),
67     DEVMETHOD(device_resume,            pcib_resume),
68
69     /* Bus interface */
70     DEVMETHOD(bus_read_ivar,            pcib_read_ivar),
71     DEVMETHOD(bus_write_ivar,           pcib_write_ivar),
72     DEVMETHOD(bus_alloc_resource,       pcib_alloc_resource),
73 #ifdef NEW_PCIB
74     DEVMETHOD(bus_adjust_resource,      pcib_adjust_resource),
75     DEVMETHOD(bus_release_resource,     pcib_release_resource),
76 #else
77     DEVMETHOD(bus_adjust_resource,      bus_generic_adjust_resource),
78     DEVMETHOD(bus_release_resource,     bus_generic_release_resource),
79 #endif
80     DEVMETHOD(bus_activate_resource,    bus_generic_activate_resource),
81     DEVMETHOD(bus_deactivate_resource,  bus_generic_deactivate_resource),
82     DEVMETHOD(bus_setup_intr,           bus_generic_setup_intr),
83     DEVMETHOD(bus_teardown_intr,        bus_generic_teardown_intr),
84
85     /* pcib interface */
86     DEVMETHOD(pcib_maxslots,            pcib_maxslots),
87     DEVMETHOD(pcib_read_config,         pcib_read_config),
88     DEVMETHOD(pcib_write_config,        pcib_write_config),
89     DEVMETHOD(pcib_route_interrupt,     pcib_route_interrupt),
90     DEVMETHOD(pcib_alloc_msi,           pcib_alloc_msi),
91     DEVMETHOD(pcib_release_msi,         pcib_release_msi),
92     DEVMETHOD(pcib_alloc_msix,          pcib_alloc_msix),
93     DEVMETHOD(pcib_release_msix,        pcib_release_msix),
94     DEVMETHOD(pcib_map_msi,             pcib_map_msi),
95     DEVMETHOD(pcib_power_for_sleep,     pcib_power_for_sleep),
96
97     DEVMETHOD_END
98 };
99
100 static devclass_t pcib_devclass;
101
102 DEFINE_CLASS_0(pcib, pcib_driver, pcib_methods, sizeof(struct pcib_softc));
103 DRIVER_MODULE(pcib, pci, pcib_driver, pcib_devclass, 0, 0);
104
105 #ifdef NEW_PCIB
106 /*
107  * XXX Todo:
108  * - properly handle the ISA enable bit.  If it is set, we should change
109  *   the behavior of the I/O window resource and rman to not allocate the
110  *   blocked ranges (upper 768 bytes of each 1K in the first 64k of the
111  *   I/O port address space).
112  */
113
114 /*
115  * Is a resource from a child device sub-allocated from one of our
116  * resource managers?
117  */
118 static int
119 pcib_is_resource_managed(struct pcib_softc *sc, int type, struct resource *r)
120 {
121
122         switch (type) {
123         case SYS_RES_IOPORT:
124                 return (rman_is_region_manager(r, &sc->io.rman));
125         case SYS_RES_MEMORY:
126                 /* Prefetchable resources may live in either memory rman. */
127                 if (rman_get_flags(r) & RF_PREFETCHABLE &&
128                     rman_is_region_manager(r, &sc->pmem.rman))
129                         return (1);
130                 return (rman_is_region_manager(r, &sc->mem.rman));
131         }
132         return (0);
133 }
134
135 static int
136 pcib_is_window_open(struct pcib_window *pw)
137 {
138
139         return (pw->valid && pw->base < pw->limit);
140 }
141
142 /*
143  * XXX: If RF_ACTIVE did not also imply allocating a bus space tag and
144  * handle for the resource, we could pass RF_ACTIVE up to the PCI bus
145  * when allocating the resource windows and rely on the PCI bus driver
146  * to do this for us.
147  */
148 static void
149 pcib_activate_window(struct pcib_softc *sc, int type)
150 {
151
152         PCI_ENABLE_IO(device_get_parent(sc->dev), sc->dev, type);
153 }
154
155 static void
156 pcib_write_windows(struct pcib_softc *sc, int mask)
157 {
158         device_t dev;
159         uint32_t val;
160
161         dev = sc->dev;
162         if (sc->io.valid && mask & WIN_IO) {
163                 val = pci_read_config(dev, PCIR_IOBASEL_1, 1);
164                 if ((val & PCIM_BRIO_MASK) == PCIM_BRIO_32) {
165                         pci_write_config(dev, PCIR_IOBASEH_1,
166                             sc->io.base >> 16, 2);
167                         pci_write_config(dev, PCIR_IOLIMITH_1,
168                             sc->io.limit >> 16, 2);
169                 }
170                 pci_write_config(dev, PCIR_IOBASEL_1, sc->io.base >> 8, 1);
171                 pci_write_config(dev, PCIR_IOLIMITL_1, sc->io.limit >> 8, 1);
172         }
173
174         if (mask & WIN_MEM) {
175                 pci_write_config(dev, PCIR_MEMBASE_1, sc->mem.base >> 16, 2);
176                 pci_write_config(dev, PCIR_MEMLIMIT_1, sc->mem.limit >> 16, 2);
177         }
178
179         if (sc->pmem.valid && mask & WIN_PMEM) {
180                 val = pci_read_config(dev, PCIR_PMBASEL_1, 2);
181                 if ((val & PCIM_BRPM_MASK) == PCIM_BRPM_64) {
182                         pci_write_config(dev, PCIR_PMBASEH_1,
183                             sc->pmem.base >> 32, 4);
184                         pci_write_config(dev, PCIR_PMLIMITH_1,
185                             sc->pmem.limit >> 32, 4);
186                 }
187                 pci_write_config(dev, PCIR_PMBASEL_1, sc->pmem.base >> 16, 2);
188                 pci_write_config(dev, PCIR_PMLIMITL_1, sc->pmem.limit >> 16, 2);
189         }
190 }
191
192 static void
193 pcib_alloc_window(struct pcib_softc *sc, struct pcib_window *w, int type,
194     int flags, pci_addr_t max_address)
195 {
196         char buf[64];
197         int error, rid;
198
199         if (max_address != (u_long)max_address)
200                 max_address = ~0ul;
201         w->rman.rm_start = 0;
202         w->rman.rm_end = max_address;
203         w->rman.rm_type = RMAN_ARRAY;
204         snprintf(buf, sizeof(buf), "%s %s window",
205             device_get_nameunit(sc->dev), w->name);
206         w->rman.rm_descr = strdup(buf, M_DEVBUF);
207         error = rman_init(&w->rman);
208         if (error)
209                 panic("Failed to initialize %s %s rman",
210                     device_get_nameunit(sc->dev), w->name);
211
212         if (!pcib_is_window_open(w))
213                 return;
214
215         if (w->base > max_address || w->limit > max_address) {
216                 device_printf(sc->dev,
217                     "initial %s window has too many bits, ignoring\n", w->name);
218                 return;
219         }
220         rid = w->reg;
221         w->res = bus_alloc_resource(sc->dev, type, &rid, w->base, w->limit,
222             w->limit - w->base + 1, flags);
223         if (w->res == NULL) {
224                 device_printf(sc->dev,
225                     "failed to allocate initial %s window: %#jx-%#jx\n",
226                     w->name, (uintmax_t)w->base, (uintmax_t)w->limit);
227                 w->base = max_address;
228                 w->limit = 0;
229                 pcib_write_windows(sc, w->mask);
230                 return;
231         }
232         pcib_activate_window(sc, type);
233
234         error = rman_manage_region(&w->rman, rman_get_start(w->res),
235             rman_get_end(w->res));
236         if (error)
237                 panic("Failed to initialize rman with resource");
238 }
239
240 /*
241  * Initialize I/O windows.
242  */
243 static void
244 pcib_probe_windows(struct pcib_softc *sc)
245 {
246         pci_addr_t max;
247         device_t dev;
248         uint32_t val;
249
250         dev = sc->dev;
251
252         /* Determine if the I/O port window is implemented. */
253         val = pci_read_config(dev, PCIR_IOBASEL_1, 1);
254         if (val == 0) {
255                 /*
256                  * If 'val' is zero, then only 16-bits of I/O space
257                  * are supported.
258                  */
259                 pci_write_config(dev, PCIR_IOBASEL_1, 0xff, 1);
260                 if (pci_read_config(dev, PCIR_IOBASEL_1, 1) != 0) {
261                         sc->io.valid = 1;
262                         pci_write_config(dev, PCIR_IOBASEL_1, 0, 1);
263                 }
264         } else
265                 sc->io.valid = 1;
266
267         /* Read the existing I/O port window. */
268         if (sc->io.valid) {
269                 sc->io.reg = PCIR_IOBASEL_1;
270                 sc->io.step = 12;
271                 sc->io.mask = WIN_IO;
272                 sc->io.name = "I/O port";
273                 if ((val & PCIM_BRIO_MASK) == PCIM_BRIO_32) {
274                         sc->io.base = PCI_PPBIOBASE(
275                             pci_read_config(dev, PCIR_IOBASEH_1, 2), val);
276                         sc->io.limit = PCI_PPBIOLIMIT(
277                             pci_read_config(dev, PCIR_IOLIMITH_1, 2),
278                             pci_read_config(dev, PCIR_IOLIMITL_1, 1));
279                         max = 0xffffffff;
280                 } else {
281                         sc->io.base = PCI_PPBIOBASE(0, val);
282                         sc->io.limit = PCI_PPBIOLIMIT(0,
283                             pci_read_config(dev, PCIR_IOLIMITL_1, 1));
284                         max = 0xffff;
285                 }
286                 pcib_alloc_window(sc, &sc->io, SYS_RES_IOPORT, 0, max);
287         }
288
289         /* Read the existing memory window. */
290         sc->mem.valid = 1;
291         sc->mem.reg = PCIR_MEMBASE_1;
292         sc->mem.step = 20;
293         sc->mem.mask = WIN_MEM;
294         sc->mem.name = "memory";
295         sc->mem.base = PCI_PPBMEMBASE(0,
296             pci_read_config(dev, PCIR_MEMBASE_1, 2));
297         sc->mem.limit = PCI_PPBMEMLIMIT(0,
298             pci_read_config(dev, PCIR_MEMLIMIT_1, 2));
299         pcib_alloc_window(sc, &sc->mem, SYS_RES_MEMORY, 0, 0xffffffff);
300
301         /* Determine if the prefetchable memory window is implemented. */
302         val = pci_read_config(dev, PCIR_PMBASEL_1, 2);
303         if (val == 0) {
304                 /*
305                  * If 'val' is zero, then only 32-bits of memory space
306                  * are supported.
307                  */
308                 pci_write_config(dev, PCIR_PMBASEL_1, 0xffff, 2);
309                 if (pci_read_config(dev, PCIR_PMBASEL_1, 2) != 0) {
310                         sc->pmem.valid = 1;
311                         pci_write_config(dev, PCIR_PMBASEL_1, 0, 2);
312                 }
313         } else
314                 sc->pmem.valid = 1;
315
316         /* Read the existing prefetchable memory window. */
317         if (sc->pmem.valid) {
318                 sc->pmem.reg = PCIR_PMBASEL_1;
319                 sc->pmem.step = 20;
320                 sc->pmem.mask = WIN_PMEM;
321                 sc->pmem.name = "prefetch";
322                 if ((val & PCIM_BRPM_MASK) == PCIM_BRPM_64) {
323                         sc->pmem.base = PCI_PPBMEMBASE(
324                             pci_read_config(dev, PCIR_PMBASEH_1, 4), val);
325                         sc->pmem.limit = PCI_PPBMEMLIMIT(
326                             pci_read_config(dev, PCIR_PMLIMITH_1, 4),
327                             pci_read_config(dev, PCIR_PMLIMITL_1, 2));
328                         max = 0xffffffffffffffff;
329                 } else {
330                         sc->pmem.base = PCI_PPBMEMBASE(0, val);
331                         sc->pmem.limit = PCI_PPBMEMLIMIT(0,
332                             pci_read_config(dev, PCIR_PMLIMITL_1, 2));
333                         max = 0xffffffff;
334                 }
335                 pcib_alloc_window(sc, &sc->pmem, SYS_RES_MEMORY,
336                     RF_PREFETCHABLE, max);
337         }
338 }
339
340 #else
341
342 /*
343  * Is the prefetch window open (eg, can we allocate memory in it?)
344  */
345 static int
346 pcib_is_prefetch_open(struct pcib_softc *sc)
347 {
348         return (sc->pmembase > 0 && sc->pmembase < sc->pmemlimit);
349 }
350
351 /*
352  * Is the nonprefetch window open (eg, can we allocate memory in it?)
353  */
354 static int
355 pcib_is_nonprefetch_open(struct pcib_softc *sc)
356 {
357         return (sc->membase > 0 && sc->membase < sc->memlimit);
358 }
359
360 /*
361  * Is the io window open (eg, can we allocate ports in it?)
362  */
363 static int
364 pcib_is_io_open(struct pcib_softc *sc)
365 {
366         return (sc->iobase > 0 && sc->iobase < sc->iolimit);
367 }
368
369 /*
370  * Get current I/O decode.
371  */
372 static void
373 pcib_get_io_decode(struct pcib_softc *sc)
374 {
375         device_t        dev;
376         uint32_t        iolow;
377
378         dev = sc->dev;
379
380         iolow = pci_read_config(dev, PCIR_IOBASEL_1, 1);
381         if ((iolow & PCIM_BRIO_MASK) == PCIM_BRIO_32)
382                 sc->iobase = PCI_PPBIOBASE(
383                     pci_read_config(dev, PCIR_IOBASEH_1, 2), iolow);
384         else
385                 sc->iobase = PCI_PPBIOBASE(0, iolow);
386
387         iolow = pci_read_config(dev, PCIR_IOLIMITL_1, 1);
388         if ((iolow & PCIM_BRIO_MASK) == PCIM_BRIO_32)
389                 sc->iolimit = PCI_PPBIOLIMIT(
390                     pci_read_config(dev, PCIR_IOLIMITH_1, 2), iolow);
391         else
392                 sc->iolimit = PCI_PPBIOLIMIT(0, iolow);
393 }
394
395 /*
396  * Get current memory decode.
397  */
398 static void
399 pcib_get_mem_decode(struct pcib_softc *sc)
400 {
401         device_t        dev;
402         pci_addr_t      pmemlow;
403
404         dev = sc->dev;
405
406         sc->membase = PCI_PPBMEMBASE(0,
407             pci_read_config(dev, PCIR_MEMBASE_1, 2));
408         sc->memlimit = PCI_PPBMEMLIMIT(0,
409             pci_read_config(dev, PCIR_MEMLIMIT_1, 2));
410
411         pmemlow = pci_read_config(dev, PCIR_PMBASEL_1, 2);
412         if ((pmemlow & PCIM_BRPM_MASK) == PCIM_BRPM_64)
413                 sc->pmembase = PCI_PPBMEMBASE(
414                     pci_read_config(dev, PCIR_PMBASEH_1, 4), pmemlow);
415         else
416                 sc->pmembase = PCI_PPBMEMBASE(0, pmemlow);
417
418         pmemlow = pci_read_config(dev, PCIR_PMLIMITL_1, 2);
419         if ((pmemlow & PCIM_BRPM_MASK) == PCIM_BRPM_64) 
420                 sc->pmemlimit = PCI_PPBMEMLIMIT(
421                     pci_read_config(dev, PCIR_PMLIMITH_1, 4), pmemlow);
422         else
423                 sc->pmemlimit = PCI_PPBMEMLIMIT(0, pmemlow);
424 }
425
426 /*
427  * Restore previous I/O decode.
428  */
429 static void
430 pcib_set_io_decode(struct pcib_softc *sc)
431 {
432         device_t        dev;
433         uint32_t        iohi;
434
435         dev = sc->dev;
436
437         iohi = sc->iobase >> 16;
438         if (iohi > 0)
439                 pci_write_config(dev, PCIR_IOBASEH_1, iohi, 2);
440         pci_write_config(dev, PCIR_IOBASEL_1, sc->iobase >> 8, 1);
441
442         iohi = sc->iolimit >> 16;
443         if (iohi > 0)
444                 pci_write_config(dev, PCIR_IOLIMITH_1, iohi, 2);
445         pci_write_config(dev, PCIR_IOLIMITL_1, sc->iolimit >> 8, 1);
446 }
447
448 /*
449  * Restore previous memory decode.
450  */
451 static void
452 pcib_set_mem_decode(struct pcib_softc *sc)
453 {
454         device_t        dev;
455         pci_addr_t      pmemhi;
456
457         dev = sc->dev;
458
459         pci_write_config(dev, PCIR_MEMBASE_1, sc->membase >> 16, 2);
460         pci_write_config(dev, PCIR_MEMLIMIT_1, sc->memlimit >> 16, 2);
461
462         pmemhi = sc->pmembase >> 32;
463         if (pmemhi > 0)
464                 pci_write_config(dev, PCIR_PMBASEH_1, pmemhi, 4);
465         pci_write_config(dev, PCIR_PMBASEL_1, sc->pmembase >> 16, 2);
466
467         pmemhi = sc->pmemlimit >> 32;
468         if (pmemhi > 0)
469                 pci_write_config(dev, PCIR_PMLIMITH_1, pmemhi, 4);
470         pci_write_config(dev, PCIR_PMLIMITL_1, sc->pmemlimit >> 16, 2);
471 }
472 #endif
473
474 /*
475  * Get current bridge configuration.
476  */
477 static void
478 pcib_cfg_save(struct pcib_softc *sc)
479 {
480         device_t        dev;
481
482         dev = sc->dev;
483
484         sc->command = pci_read_config(dev, PCIR_COMMAND, 2);
485         sc->pribus = pci_read_config(dev, PCIR_PRIBUS_1, 1);
486         sc->secbus = pci_read_config(dev, PCIR_SECBUS_1, 1);
487         sc->subbus = pci_read_config(dev, PCIR_SUBBUS_1, 1);
488         sc->bridgectl = pci_read_config(dev, PCIR_BRIDGECTL_1, 2);
489         sc->seclat = pci_read_config(dev, PCIR_SECLAT_1, 1);
490 #ifndef NEW_PCIB
491         if (sc->command & PCIM_CMD_PORTEN)
492                 pcib_get_io_decode(sc);
493         if (sc->command & PCIM_CMD_MEMEN)
494                 pcib_get_mem_decode(sc);
495 #endif
496 }
497
498 /*
499  * Restore previous bridge configuration.
500  */
501 static void
502 pcib_cfg_restore(struct pcib_softc *sc)
503 {
504         device_t        dev;
505
506         dev = sc->dev;
507
508         pci_write_config(dev, PCIR_COMMAND, sc->command, 2);
509         pci_write_config(dev, PCIR_PRIBUS_1, sc->pribus, 1);
510         pci_write_config(dev, PCIR_SECBUS_1, sc->secbus, 1);
511         pci_write_config(dev, PCIR_SUBBUS_1, sc->subbus, 1);
512         pci_write_config(dev, PCIR_BRIDGECTL_1, sc->bridgectl, 2);
513         pci_write_config(dev, PCIR_SECLAT_1, sc->seclat, 1);
514 #ifdef NEW_PCIB
515         pcib_write_windows(sc, WIN_IO | WIN_MEM | WIN_PMEM);
516 #else
517         if (sc->command & PCIM_CMD_PORTEN)
518                 pcib_set_io_decode(sc);
519         if (sc->command & PCIM_CMD_MEMEN)
520                 pcib_set_mem_decode(sc);
521 #endif
522 }
523
524 /*
525  * Generic device interface
526  */
527 static int
528 pcib_probe(device_t dev)
529 {
530     if ((pci_get_class(dev) == PCIC_BRIDGE) &&
531         (pci_get_subclass(dev) == PCIS_BRIDGE_PCI)) {
532         device_set_desc(dev, "PCI-PCI bridge");
533         return(-10000);
534     }
535     return(ENXIO);
536 }
537
538 void
539 pcib_attach_common(device_t dev)
540 {
541     struct pcib_softc   *sc;
542     struct sysctl_ctx_list *sctx;
543     struct sysctl_oid   *soid;
544
545     sc = device_get_softc(dev);
546     sc->dev = dev;
547
548     /*
549      * Get current bridge configuration.
550      */
551     sc->domain = pci_get_domain(dev);
552     sc->secstat = pci_read_config(dev, PCIR_SECSTAT_1, 2);
553     pcib_cfg_save(sc);
554
555     /*
556      * Setup sysctl reporting nodes
557      */
558     sctx = device_get_sysctl_ctx(dev);
559     soid = device_get_sysctl_tree(dev);
560     SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "domain",
561       CTLFLAG_RD, &sc->domain, 0, "Domain number");
562     SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "pribus",
563       CTLFLAG_RD, &sc->pribus, 0, "Primary bus number");
564     SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "secbus",
565       CTLFLAG_RD, &sc->secbus, 0, "Secondary bus number");
566     SYSCTL_ADD_UINT(sctx, SYSCTL_CHILDREN(soid), OID_AUTO, "subbus",
567       CTLFLAG_RD, &sc->subbus, 0, "Subordinate bus number");
568
569     /*
570      * Quirk handling.
571      */
572     switch (pci_get_devid(dev)) {
573     case 0x12258086:            /* Intel 82454KX/GX (Orion) */
574         {
575             uint8_t     supbus;
576
577             supbus = pci_read_config(dev, 0x41, 1);
578             if (supbus != 0xff) {
579                 sc->secbus = supbus + 1;
580                 sc->subbus = supbus + 1;
581             }
582             break;
583         }
584
585     /*
586      * The i82380FB mobile docking controller is a PCI-PCI bridge,
587      * and it is a subtractive bridge.  However, the ProgIf is wrong
588      * so the normal setting of PCIB_SUBTRACTIVE bit doesn't
589      * happen.  There's also a Toshiba bridge that behaves this
590      * way.
591      */
592     case 0x124b8086:            /* Intel 82380FB Mobile */
593     case 0x060513d7:            /* Toshiba ???? */
594         sc->flags |= PCIB_SUBTRACTIVE;
595         break;
596
597     /* Compaq R3000 BIOS sets wrong subordinate bus number. */
598     case 0x00dd10de:
599         {
600             char *cp;
601
602             if ((cp = getenv("smbios.planar.maker")) == NULL)
603                 break;
604             if (strncmp(cp, "Compal", 6) != 0) {
605                 freeenv(cp);
606                 break;
607             }
608             freeenv(cp);
609             if ((cp = getenv("smbios.planar.product")) == NULL)
610                 break;
611             if (strncmp(cp, "08A0", 4) != 0) {
612                 freeenv(cp);
613                 break;
614             }
615             freeenv(cp);
616             if (sc->subbus < 0xa) {
617                 pci_write_config(dev, PCIR_SUBBUS_1, 0xa, 1);
618                 sc->subbus = pci_read_config(dev, PCIR_SUBBUS_1, 1);
619             }
620             break;
621         }
622     }
623
624     if (pci_msi_device_blacklisted(dev))
625         sc->flags |= PCIB_DISABLE_MSI;
626
627     /*
628      * Intel 815, 845 and other chipsets say they are PCI-PCI bridges,
629      * but have a ProgIF of 0x80.  The 82801 family (AA, AB, BAM/CAM,
630      * BA/CA/DB and E) PCI bridges are HUB-PCI bridges, in Intelese.
631      * This means they act as if they were subtractively decoding
632      * bridges and pass all transactions.  Mark them and real ProgIf 1
633      * parts as subtractive.
634      */
635     if ((pci_get_devid(dev) & 0xff00ffff) == 0x24008086 ||
636       pci_read_config(dev, PCIR_PROGIF, 1) == PCIP_BRIDGE_PCI_SUBTRACTIVE)
637         sc->flags |= PCIB_SUBTRACTIVE;
638
639 #ifdef NEW_PCIB
640     pcib_probe_windows(sc);
641 #endif
642     if (bootverbose) {
643         device_printf(dev, "  domain            %d\n", sc->domain);
644         device_printf(dev, "  secondary bus     %d\n", sc->secbus);
645         device_printf(dev, "  subordinate bus   %d\n", sc->subbus);
646 #ifdef NEW_PCIB
647         if (pcib_is_window_open(&sc->io))
648             device_printf(dev, "  I/O decode        0x%jx-0x%jx\n",
649               (uintmax_t)sc->io.base, (uintmax_t)sc->io.limit);
650         if (pcib_is_window_open(&sc->mem))
651             device_printf(dev, "  memory decode     0x%jx-0x%jx\n",
652               (uintmax_t)sc->mem.base, (uintmax_t)sc->mem.limit);
653         if (pcib_is_window_open(&sc->pmem))
654             device_printf(dev, "  prefetched decode 0x%jx-0x%jx\n",
655               (uintmax_t)sc->pmem.base, (uintmax_t)sc->pmem.limit);
656 #else
657         if (pcib_is_io_open(sc))
658             device_printf(dev, "  I/O decode        0x%x-0x%x\n",
659               sc->iobase, sc->iolimit);
660         if (pcib_is_nonprefetch_open(sc))
661             device_printf(dev, "  memory decode     0x%jx-0x%jx\n",
662               (uintmax_t)sc->membase, (uintmax_t)sc->memlimit);
663         if (pcib_is_prefetch_open(sc))
664             device_printf(dev, "  prefetched decode 0x%jx-0x%jx\n",
665               (uintmax_t)sc->pmembase, (uintmax_t)sc->pmemlimit);
666 #endif
667         else
668             device_printf(dev, "  no prefetched decode\n");
669         if (sc->flags & PCIB_SUBTRACTIVE)
670             device_printf(dev, "  Subtractively decoded bridge.\n");
671     }
672
673     /*
674      * XXX If the secondary bus number is zero, we should assign a bus number
675      *     since the BIOS hasn't, then initialise the bridge.  A simple
676      *     bus_alloc_resource with the a couple of busses seems like the right
677      *     approach, but we don't know what busses the BIOS might have already
678      *     assigned to other bridges on this bus that probe later than we do.
679      *
680      *     If the subordinate bus number is less than the secondary bus number,
681      *     we should pick a better value.  One sensible alternative would be to
682      *     pick 255; the only tradeoff here is that configuration transactions
683      *     would be more widely routed than absolutely necessary.  We could
684      *     then do a walk of the tree later and fix it.
685      */
686 }
687
688 int
689 pcib_attach(device_t dev)
690 {
691     struct pcib_softc   *sc;
692     device_t            child;
693
694     pcib_attach_common(dev);
695     sc = device_get_softc(dev);
696     if (sc->secbus != 0) {
697         child = device_add_child(dev, "pci", sc->secbus);
698         if (child != NULL)
699             return(bus_generic_attach(dev));
700     }
701
702     /* no secondary bus; we should have fixed this */
703     return(0);
704 }
705
706 int
707 pcib_suspend(device_t dev)
708 {
709         device_t        pcib;
710         int             dstate, error;
711
712         pcib_cfg_save(device_get_softc(dev));
713         error = bus_generic_suspend(dev);
714         if (error == 0 && pci_do_power_suspend) {
715                 dstate = PCI_POWERSTATE_D3;
716                 pcib = device_get_parent(device_get_parent(dev));
717                 if (PCIB_POWER_FOR_SLEEP(pcib, dev, &dstate) == 0)
718                         pci_set_powerstate(dev, dstate);
719         }
720         return (error);
721 }
722
723 int
724 pcib_resume(device_t dev)
725 {
726         device_t        pcib;
727
728         if (pci_do_power_resume) {
729                 pcib = device_get_parent(device_get_parent(dev));
730                 if (PCIB_POWER_FOR_SLEEP(pcib, dev, NULL) == 0)
731                         pci_set_powerstate(dev, PCI_POWERSTATE_D0);
732         }
733         pcib_cfg_restore(device_get_softc(dev));
734         return (bus_generic_resume(dev));
735 }
736
737 int
738 pcib_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
739 {
740     struct pcib_softc   *sc = device_get_softc(dev);
741     
742     switch (which) {
743     case PCIB_IVAR_DOMAIN:
744         *result = sc->domain;
745         return(0);
746     case PCIB_IVAR_BUS:
747         *result = sc->secbus;
748         return(0);
749     }
750     return(ENOENT);
751 }
752
753 int
754 pcib_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
755 {
756     struct pcib_softc   *sc = device_get_softc(dev);
757
758     switch (which) {
759     case PCIB_IVAR_DOMAIN:
760         return(EINVAL);
761     case PCIB_IVAR_BUS:
762         sc->secbus = value;
763         return(0);
764     }
765     return(ENOENT);
766 }
767
768 #ifdef NEW_PCIB
769 /*
770  * Attempt to allocate a resource from the existing resources assigned
771  * to a window.
772  */
773 static struct resource *
774 pcib_suballoc_resource(struct pcib_softc *sc, struct pcib_window *w,
775     device_t child, int type, int *rid, u_long start, u_long end, u_long count,
776     u_int flags)
777 {
778         struct resource *res;
779
780         if (!pcib_is_window_open(w))
781                 return (NULL);
782
783         res = rman_reserve_resource(&w->rman, start, end, count,
784             flags & ~RF_ACTIVE, child);
785         if (res == NULL)
786                 return (NULL);
787
788         if (bootverbose)
789                 device_printf(sc->dev,
790                     "allocated %s range (%#lx-%#lx) for rid %x of %s\n",
791                     w->name, rman_get_start(res), rman_get_end(res), *rid,
792                     pcib_child_name(child));
793         rman_set_rid(res, *rid);
794
795         /*
796          * If the resource should be active, pass that request up the
797          * tree.  This assumes the parent drivers can handle
798          * activating sub-allocated resources.
799          */
800         if (flags & RF_ACTIVE) {
801                 if (bus_activate_resource(child, type, *rid, res) != 0) {
802                         rman_release_resource(res);
803                         return (NULL);
804                 }
805         }
806
807         return (res);
808 }
809
810 /*
811  * Attempt to grow a window to make room for a given resource request.
812  * The 'step' parameter is log_2 of the desired I/O window's alignment.
813  */
814 static int
815 pcib_grow_window(struct pcib_softc *sc, struct pcib_window *w, int type,
816     u_long start, u_long end, u_long count, u_int flags)
817 {
818         u_long align, start_free, end_free, front, back, wmask;
819         int error, rid;
820
821         /*
822          * Clamp the desired resource range to the maximum address
823          * this window supports.  Reject impossible requests.
824          */
825         if (!w->valid)
826                 return (EINVAL);
827         if (end > w->rman.rm_end)
828                 end = w->rman.rm_end;
829         if (start + count - 1 > end || start + count < start)
830                 return (EINVAL);
831         wmask = (1ul << w->step) - 1;
832
833         /*
834          * If there is no resource at all, just try to allocate enough
835          * aligned space for this resource.
836          */
837         if (w->res == NULL) {
838                 if (RF_ALIGNMENT(flags) < w->step) {
839                         flags &= ~RF_ALIGNMENT_MASK;
840                         flags |= RF_ALIGNMENT_LOG2(w->step);
841                 }
842                 start &= ~wmask;
843                 end |= wmask;
844                 count = roundup2(count, 1ul << w->step);
845                 rid = w->reg;
846                 w->res = bus_alloc_resource(sc->dev, type, &rid, start, end,
847                     count, flags & ~RF_ACTIVE);
848                 if (w->res == NULL) {
849                         if (bootverbose)
850                                 device_printf(sc->dev,
851                     "failed to allocate initial %s window (%#lx-%#lx,%#lx)\n",
852                                     w->name, start, end, count);
853                         return (ENXIO);
854                 }
855                 if (bootverbose)
856                         device_printf(sc->dev,
857                             "allocated initial %s window of %#lx-%#lx\n",
858                             w->name, rman_get_start(w->res),
859                             rman_get_end(w->res));
860                 error = rman_manage_region(&w->rman, rman_get_start(w->res),
861                     rman_get_end(w->res));
862                 if (error) {
863                         if (bootverbose)
864                                 device_printf(sc->dev,
865                                     "failed to add initial %s window to rman\n",
866                                     w->name);
867                         bus_release_resource(sc->dev, type, w->reg, w->res);
868                         w->res = NULL;
869                         return (error);
870                 }
871                 pcib_activate_window(sc, type);
872                 goto updatewin;
873         }
874
875         /*
876          * See if growing the window would help.  Compute the minimum
877          * amount of address space needed on both the front and back
878          * ends of the existing window to satisfy the allocation.
879          *
880          * For each end, build a candidate region adjusting for the
881          * required alignment, etc.  If there is a free region at the
882          * edge of the window, grow from the inner edge of the free
883          * region.  Otherwise grow from the window boundary.
884          *
885          * XXX: Special case: if w->res is completely empty and the
886          * request size is larger than w->res, we should find the
887          * optimal aligned buffer containing w->res and allocate that.
888          */
889         if (bootverbose)
890                 device_printf(sc->dev,
891                     "attempting to grow %s window for (%#lx-%#lx,%#lx)\n",
892                     w->name, start, end, count);
893         align = 1ul << RF_ALIGNMENT(flags);
894         if (start < rman_get_start(w->res)) {
895                 if (rman_first_free_region(&w->rman, &start_free, &end_free) !=
896                     0 || start_free != rman_get_start(w->res))
897                         end_free = rman_get_start(w->res);
898                 if (end_free > end)
899                         end_free = end + 1;
900
901                 /* Move end_free down until it is properly aligned. */
902                 end_free &= ~(align - 1);
903                 end_free--;
904                 front = end_free - (count - 1);
905
906                 /*
907                  * The resource would now be allocated at (front,
908                  * end_free).  Ensure that fits in the (start, end)
909                  * bounds.  end_free is checked above.  If 'front' is
910                  * ok, ensure it is properly aligned for this window.
911                  * Also check for underflow.
912                  */
913                 if (front >= start && front <= end_free) {
914                         if (bootverbose)
915                                 printf("\tfront candidate range: %#lx-%#lx\n",
916                                     front, end_free);
917                         front &= ~wmask;
918                         front = rman_get_start(w->res) - front;
919                 } else
920                         front = 0;
921         } else
922                 front = 0;
923         if (end > rman_get_end(w->res)) {
924                 if (rman_last_free_region(&w->rman, &start_free, &end_free) !=
925                     0 || end_free != rman_get_end(w->res))
926                         start_free = rman_get_end(w->res) + 1;
927                 if (start_free < start)
928                         start_free = start;
929
930                 /* Move start_free up until it is properly aligned. */
931                 start_free = roundup2(start_free, align);
932                 back = start_free + count - 1;
933
934                 /*
935                  * The resource would now be allocated at (start_free,
936                  * back).  Ensure that fits in the (start, end)
937                  * bounds.  start_free is checked above.  If 'back' is
938                  * ok, ensure it is properly aligned for this window.
939                  * Also check for overflow.
940                  */
941                 if (back <= end && start_free <= back) {
942                         if (bootverbose)
943                                 printf("\tback candidate range: %#lx-%#lx\n",
944                                     start_free, back);
945                         back |= wmask;
946                         back -= rman_get_end(w->res);
947                 } else
948                         back = 0;
949         } else
950                 back = 0;
951
952         /*
953          * Try to allocate the smallest needed region first.
954          * If that fails, fall back to the other region.
955          */
956         error = ENOSPC;
957         while (front != 0 || back != 0) {
958                 if (front != 0 && (front <= back || back == 0)) {
959                         error = bus_adjust_resource(sc->dev, type, w->res,
960                             rman_get_start(w->res) - front,
961                             rman_get_end(w->res));
962                         if (error == 0)
963                                 break;
964                         front = 0;
965                 } else {
966                         error = bus_adjust_resource(sc->dev, type, w->res,
967                             rman_get_start(w->res),
968                             rman_get_end(w->res) + back);
969                         if (error == 0)
970                                 break;
971                         back = 0;
972                 }
973         }
974
975         if (error)
976                 return (error);
977         if (bootverbose)
978                 device_printf(sc->dev, "grew %s window to %#lx-%#lx\n",
979                     w->name, rman_get_start(w->res), rman_get_end(w->res));
980
981         /* Add the newly allocated region to the resource manager. */
982         if (w->base != rman_get_start(w->res)) {
983                 KASSERT(w->limit == rman_get_end(w->res), ("both ends moved"));
984                 error = rman_manage_region(&w->rman, rman_get_start(w->res),
985                     w->base - 1);
986         } else {
987                 KASSERT(w->limit != rman_get_end(w->res),
988                     ("neither end moved"));
989                 error = rman_manage_region(&w->rman, w->limit + 1,
990                     rman_get_end(w->res));
991         }
992         if (error) {
993                 if (bootverbose)
994                         device_printf(sc->dev,
995                             "failed to expand %s resource manager\n", w->name);
996                 bus_adjust_resource(sc->dev, type, w->res, w->base, w->limit);
997                 return (error);
998         }
999
1000 updatewin:
1001         /* Save the new window. */
1002         w->base = rman_get_start(w->res);
1003         w->limit = rman_get_end(w->res);
1004         KASSERT((w->base & wmask) == 0, ("start address is not aligned"));
1005         KASSERT((w->limit & wmask) == wmask, ("end address is not aligned"));
1006         pcib_write_windows(sc, w->mask);
1007         return (0);
1008 }
1009
1010 /*
1011  * We have to trap resource allocation requests and ensure that the bridge
1012  * is set up to, or capable of handling them.
1013  */
1014 struct resource *
1015 pcib_alloc_resource(device_t dev, device_t child, int type, int *rid,
1016     u_long start, u_long end, u_long count, u_int flags)
1017 {
1018         struct pcib_softc *sc;
1019         struct resource *r;
1020
1021         sc = device_get_softc(dev);
1022
1023         /*
1024          * VGA resources are decoded iff the VGA enable bit is set in
1025          * the bridge control register.  VGA resources do not fall into
1026          * the resource windows and are passed up to the parent.
1027          */
1028         if ((type == SYS_RES_IOPORT && pci_is_vga_ioport_range(start, end)) ||
1029             (type == SYS_RES_MEMORY && pci_is_vga_memory_range(start, end))) {
1030                 if (sc->bridgectl & PCIB_BCR_VGA_ENABLE)
1031                         return (bus_generic_alloc_resource(dev, child, type,
1032                             rid, start, end, count, flags));
1033                 else
1034                         return (NULL);
1035         }
1036
1037         switch (type) {
1038         case SYS_RES_IOPORT:
1039                 r = pcib_suballoc_resource(sc, &sc->io, child, type, rid, start,
1040                     end, count, flags);
1041                 if (r != NULL || (sc->flags & PCIB_SUBTRACTIVE) != 0)
1042                         break;
1043                 if (pcib_grow_window(sc, &sc->io, type, start, end, count,
1044                     flags) == 0)
1045                         r = pcib_suballoc_resource(sc, &sc->io, child, type,
1046                             rid, start, end, count, flags);
1047                 break;
1048         case SYS_RES_MEMORY:
1049                 /*
1050                  * For prefetchable resources, prefer the prefetchable
1051                  * memory window, but fall back to the regular memory
1052                  * window if that fails.  Try both windows before
1053                  * attempting to grow a window in case the firmware
1054                  * has used a range in the regular memory window to
1055                  * map a prefetchable BAR.
1056                  */
1057                 if (flags & RF_PREFETCHABLE) {
1058                         r = pcib_suballoc_resource(sc, &sc->pmem, child, type,
1059                             rid, start, end, count, flags);
1060                         if (r != NULL)
1061                                 break;
1062                 }
1063                 r = pcib_suballoc_resource(sc, &sc->mem, child, type, rid,
1064                     start, end, count, flags);
1065                 if (r != NULL || (sc->flags & PCIB_SUBTRACTIVE) != 0)
1066                         break;
1067                 if (flags & RF_PREFETCHABLE) {
1068                         if (pcib_grow_window(sc, &sc->pmem, type, start, end,
1069                             count, flags) == 0) {
1070                                 r = pcib_suballoc_resource(sc, &sc->pmem, child,
1071                                     type, rid, start, end, count, flags);
1072                                 if (r != NULL)
1073                                         break;
1074                         }
1075                 }
1076                 if (pcib_grow_window(sc, &sc->mem, type, start, end, count,
1077                     flags & ~RF_PREFETCHABLE) == 0)
1078                         r = pcib_suballoc_resource(sc, &sc->mem, child, type,
1079                             rid, start, end, count, flags);
1080                 break;
1081         default:
1082                 return (bus_generic_alloc_resource(dev, child, type, rid,
1083                     start, end, count, flags));
1084         }
1085
1086         /*
1087          * If attempts to suballocate from the window fail but this is a
1088          * subtractive bridge, pass the request up the tree.
1089          */
1090         if (sc->flags & PCIB_SUBTRACTIVE && r == NULL)
1091                 return (bus_generic_alloc_resource(dev, child, type, rid,
1092                     start, end, count, flags));
1093         return (r);
1094 }
1095
1096 int
1097 pcib_adjust_resource(device_t bus, device_t child, int type, struct resource *r,
1098     u_long start, u_long end)
1099 {
1100         struct pcib_softc *sc;
1101
1102         sc = device_get_softc(bus);
1103         if (pcib_is_resource_managed(sc, type, r))
1104                 return (rman_adjust_resource(r, start, end));
1105         return (bus_generic_adjust_resource(bus, child, type, r, start, end));
1106 }
1107
1108 int
1109 pcib_release_resource(device_t dev, device_t child, int type, int rid,
1110     struct resource *r)
1111 {
1112         struct pcib_softc *sc;
1113         int error;
1114
1115         sc = device_get_softc(dev);
1116         if (pcib_is_resource_managed(sc, type, r)) {
1117                 if (rman_get_flags(r) & RF_ACTIVE) {
1118                         error = bus_deactivate_resource(child, type, rid, r);
1119                         if (error)
1120                                 return (error);
1121                 }
1122                 return (rman_release_resource(r));
1123         }
1124         return (bus_generic_release_resource(dev, child, type, rid, r));
1125 }
1126 #else
1127 /*
1128  * We have to trap resource allocation requests and ensure that the bridge
1129  * is set up to, or capable of handling them.
1130  */
1131 struct resource *
1132 pcib_alloc_resource(device_t dev, device_t child, int type, int *rid, 
1133     u_long start, u_long end, u_long count, u_int flags)
1134 {
1135         struct pcib_softc       *sc = device_get_softc(dev);
1136         const char *name, *suffix;
1137         int ok;
1138
1139         /*
1140          * Fail the allocation for this range if it's not supported.
1141          */
1142         name = device_get_nameunit(child);
1143         if (name == NULL) {
1144                 name = "";
1145                 suffix = "";
1146         } else
1147                 suffix = " ";
1148         switch (type) {
1149         case SYS_RES_IOPORT:
1150                 ok = 0;
1151                 if (!pcib_is_io_open(sc))
1152                         break;
1153                 ok = (start >= sc->iobase && end <= sc->iolimit);
1154
1155                 /*
1156                  * Make sure we allow access to VGA I/O addresses when the
1157                  * bridge has the "VGA Enable" bit set.
1158                  */
1159                 if (!ok && pci_is_vga_ioport_range(start, end))
1160                         ok = (sc->bridgectl & PCIB_BCR_VGA_ENABLE) ? 1 : 0;
1161
1162                 if ((sc->flags & PCIB_SUBTRACTIVE) == 0) {
1163                         if (!ok) {
1164                                 if (start < sc->iobase)
1165                                         start = sc->iobase;
1166                                 if (end > sc->iolimit)
1167                                         end = sc->iolimit;
1168                                 if (start < end)
1169                                         ok = 1;
1170                         }
1171                 } else {
1172                         ok = 1;
1173 #if 0
1174                         /*
1175                          * If we overlap with the subtractive range, then
1176                          * pick the upper range to use.
1177                          */
1178                         if (start < sc->iolimit && end > sc->iobase)
1179                                 start = sc->iolimit + 1;
1180 #endif
1181                 }
1182                 if (end < start) {
1183                         device_printf(dev, "ioport: end (%lx) < start (%lx)\n",
1184                             end, start);
1185                         start = 0;
1186                         end = 0;
1187                         ok = 0;
1188                 }
1189                 if (!ok) {
1190                         device_printf(dev, "%s%srequested unsupported I/O "
1191                             "range 0x%lx-0x%lx (decoding 0x%x-0x%x)\n",
1192                             name, suffix, start, end, sc->iobase, sc->iolimit);
1193                         return (NULL);
1194                 }
1195                 if (bootverbose)
1196                         device_printf(dev,
1197                             "%s%srequested I/O range 0x%lx-0x%lx: in range\n",
1198                             name, suffix, start, end);
1199                 break;
1200
1201         case SYS_RES_MEMORY:
1202                 ok = 0;
1203                 if (pcib_is_nonprefetch_open(sc))
1204                         ok = ok || (start >= sc->membase && end <= sc->memlimit);
1205                 if (pcib_is_prefetch_open(sc))
1206                         ok = ok || (start >= sc->pmembase && end <= sc->pmemlimit);
1207
1208                 /*
1209                  * Make sure we allow access to VGA memory addresses when the
1210                  * bridge has the "VGA Enable" bit set.
1211                  */
1212                 if (!ok && pci_is_vga_memory_range(start, end))
1213                         ok = (sc->bridgectl & PCIB_BCR_VGA_ENABLE) ? 1 : 0;
1214
1215                 if ((sc->flags & PCIB_SUBTRACTIVE) == 0) {
1216                         if (!ok) {
1217                                 ok = 1;
1218                                 if (flags & RF_PREFETCHABLE) {
1219                                         if (pcib_is_prefetch_open(sc)) {
1220                                                 if (start < sc->pmembase)
1221                                                         start = sc->pmembase;
1222                                                 if (end > sc->pmemlimit)
1223                                                         end = sc->pmemlimit;
1224                                         } else {
1225                                                 ok = 0;
1226                                         }
1227                                 } else {        /* non-prefetchable */
1228                                         if (pcib_is_nonprefetch_open(sc)) {
1229                                                 if (start < sc->membase)
1230                                                         start = sc->membase;
1231                                                 if (end > sc->memlimit)
1232                                                         end = sc->memlimit;
1233                                         } else {
1234                                                 ok = 0;
1235                                         }
1236                                 }
1237                         }
1238                 } else if (!ok) {
1239                         ok = 1; /* subtractive bridge: always ok */
1240 #if 0
1241                         if (pcib_is_nonprefetch_open(sc)) {
1242                                 if (start < sc->memlimit && end > sc->membase)
1243                                         start = sc->memlimit + 1;
1244                         }
1245                         if (pcib_is_prefetch_open(sc)) {
1246                                 if (start < sc->pmemlimit && end > sc->pmembase)
1247                                         start = sc->pmemlimit + 1;
1248                         }
1249 #endif
1250                 }
1251                 if (end < start) {
1252                         device_printf(dev, "memory: end (%lx) < start (%lx)\n",
1253                             end, start);
1254                         start = 0;
1255                         end = 0;
1256                         ok = 0;
1257                 }
1258                 if (!ok && bootverbose)
1259                         device_printf(dev,
1260                             "%s%srequested unsupported memory range %#lx-%#lx "
1261                             "(decoding %#jx-%#jx, %#jx-%#jx)\n",
1262                             name, suffix, start, end,
1263                             (uintmax_t)sc->membase, (uintmax_t)sc->memlimit,
1264                             (uintmax_t)sc->pmembase, (uintmax_t)sc->pmemlimit);
1265                 if (!ok)
1266                         return (NULL);
1267                 if (bootverbose)
1268                         device_printf(dev,"%s%srequested memory range "
1269                             "0x%lx-0x%lx: good\n",
1270                             name, suffix, start, end);
1271                 break;
1272
1273         default:
1274                 break;
1275         }
1276         /*
1277          * Bridge is OK decoding this resource, so pass it up.
1278          */
1279         return (bus_generic_alloc_resource(dev, child, type, rid, start, end,
1280             count, flags));
1281 }
1282 #endif
1283
1284 /*
1285  * PCIB interface.
1286  */
1287 int
1288 pcib_maxslots(device_t dev)
1289 {
1290     return(PCI_SLOTMAX);
1291 }
1292
1293 /*
1294  * Since we are a child of a PCI bus, its parent must support the pcib interface.
1295  */
1296 uint32_t
1297 pcib_read_config(device_t dev, u_int b, u_int s, u_int f, u_int reg, int width)
1298 {
1299     return(PCIB_READ_CONFIG(device_get_parent(device_get_parent(dev)), b, s, f, reg, width));
1300 }
1301
1302 void
1303 pcib_write_config(device_t dev, u_int b, u_int s, u_int f, u_int reg, uint32_t val, int width)
1304 {
1305     PCIB_WRITE_CONFIG(device_get_parent(device_get_parent(dev)), b, s, f, reg, val, width);
1306 }
1307
1308 /*
1309  * Route an interrupt across a PCI bridge.
1310  */
1311 int
1312 pcib_route_interrupt(device_t pcib, device_t dev, int pin)
1313 {
1314     device_t    bus;
1315     int         parent_intpin;
1316     int         intnum;
1317
1318     /*  
1319      *
1320      * The PCI standard defines a swizzle of the child-side device/intpin to
1321      * the parent-side intpin as follows.
1322      *
1323      * device = device on child bus
1324      * child_intpin = intpin on child bus slot (0-3)
1325      * parent_intpin = intpin on parent bus slot (0-3)
1326      *
1327      * parent_intpin = (device + child_intpin) % 4
1328      */
1329     parent_intpin = (pci_get_slot(dev) + (pin - 1)) % 4;
1330
1331     /*
1332      * Our parent is a PCI bus.  Its parent must export the pcib interface
1333      * which includes the ability to route interrupts.
1334      */
1335     bus = device_get_parent(pcib);
1336     intnum = PCIB_ROUTE_INTERRUPT(device_get_parent(bus), pcib, parent_intpin + 1);
1337     if (PCI_INTERRUPT_VALID(intnum) && bootverbose) {
1338         device_printf(pcib, "slot %d INT%c is routed to irq %d\n",
1339             pci_get_slot(dev), 'A' + pin - 1, intnum);
1340     }
1341     return(intnum);
1342 }
1343
1344 /* Pass request to alloc MSI/MSI-X messages up to the parent bridge. */
1345 int
1346 pcib_alloc_msi(device_t pcib, device_t dev, int count, int maxcount, int *irqs)
1347 {
1348         struct pcib_softc *sc = device_get_softc(pcib);
1349         device_t bus;
1350
1351         if (sc->flags & PCIB_DISABLE_MSI)
1352                 return (ENXIO);
1353         bus = device_get_parent(pcib);
1354         return (PCIB_ALLOC_MSI(device_get_parent(bus), dev, count, maxcount,
1355             irqs));
1356 }
1357
1358 /* Pass request to release MSI/MSI-X messages up to the parent bridge. */
1359 int
1360 pcib_release_msi(device_t pcib, device_t dev, int count, int *irqs)
1361 {
1362         device_t bus;
1363
1364         bus = device_get_parent(pcib);
1365         return (PCIB_RELEASE_MSI(device_get_parent(bus), dev, count, irqs));
1366 }
1367
1368 /* Pass request to alloc an MSI-X message up to the parent bridge. */
1369 int
1370 pcib_alloc_msix(device_t pcib, device_t dev, int *irq)
1371 {
1372         struct pcib_softc *sc = device_get_softc(pcib);
1373         device_t bus;
1374
1375         if (sc->flags & PCIB_DISABLE_MSI)
1376                 return (ENXIO);
1377         bus = device_get_parent(pcib);
1378         return (PCIB_ALLOC_MSIX(device_get_parent(bus), dev, irq));
1379 }
1380
1381 /* Pass request to release an MSI-X message up to the parent bridge. */
1382 int
1383 pcib_release_msix(device_t pcib, device_t dev, int irq)
1384 {
1385         device_t bus;
1386
1387         bus = device_get_parent(pcib);
1388         return (PCIB_RELEASE_MSIX(device_get_parent(bus), dev, irq));
1389 }
1390
1391 /* Pass request to map MSI/MSI-X message up to parent bridge. */
1392 int
1393 pcib_map_msi(device_t pcib, device_t dev, int irq, uint64_t *addr,
1394     uint32_t *data)
1395 {
1396         device_t bus;
1397         int error;
1398
1399         bus = device_get_parent(pcib);
1400         error = PCIB_MAP_MSI(device_get_parent(bus), dev, irq, addr, data);
1401         if (error)
1402                 return (error);
1403
1404         pci_ht_map_msi(pcib, *addr);
1405         return (0);
1406 }
1407
1408 /* Pass request for device power state up to parent bridge. */
1409 int
1410 pcib_power_for_sleep(device_t pcib, device_t dev, int *pstate)
1411 {
1412         device_t bus;
1413
1414         bus = device_get_parent(pcib);
1415         return (PCIB_POWER_FOR_SLEEP(bus, dev, pstate));
1416 }