]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/x86/x86/nexus.c
zfs: merge openzfs/zfs@e25f9131d (zfs-2.1-release) into stable/13
[FreeBSD/FreeBSD.git] / sys / x86 / x86 / nexus.c
1 /*-
2  * Copyright 1998 Massachusetts Institute of Technology
3  *
4  * Permission to use, copy, modify, and distribute this software and
5  * its documentation for any purpose and without fee is hereby
6  * granted, provided that both the above copyright notice and this
7  * permission notice appear in all copies, that both the above
8  * copyright notice and this permission notice appear in all
9  * supporting documentation, and that the name of M.I.T. not be used
10  * in advertising or publicity pertaining to distribution of the
11  * software without specific, written prior permission.  M.I.T. makes
12  * no representations about the suitability of this software for any
13  * purpose.  It is provided "as is" without express or implied
14  * warranty.
15  *
16  * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
17  * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18  * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20  * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 /*
34  * This code implements a `root nexus' for Intel Architecture
35  * machines.  The function of the root nexus is to serve as an
36  * attachment point for both processors and buses, and to manage
37  * resources which are common to all of them.  In particular,
38  * this code implements the core resource managers for interrupt
39  * requests, DMA requests (which rightfully should be a part of the
40  * ISA code but it's easier to do it here for now), I/O port addresses,
41  * and I/O memory address space.
42  */
43
44 #ifdef __amd64__
45 #define DEV_APIC
46 #else
47 #include "opt_apic.h"
48 #endif
49 #include "opt_isa.h"
50 #include "opt_pci.h"
51
52 #include <sys/param.h>
53 #include <sys/systm.h>
54 #include <sys/bus.h>
55 #include <sys/interrupt.h>
56 #include <sys/kernel.h>
57 #include <sys/linker.h>
58 #include <sys/malloc.h>
59 #include <sys/module.h>
60 #include <sys/rman.h>
61
62 #include <vm/vm.h>
63 #include <vm/vm_param.h>
64 #include <vm/vm_page.h>
65 #include <vm/vm_phys.h>
66 #include <vm/vm_dumpset.h>
67 #include <vm/pmap.h>
68
69 #include <machine/bus.h>
70 #include <machine/intr_machdep.h>
71 #include <machine/md_var.h>
72 #include <machine/metadata.h>
73 #include <machine/nexusvar.h>
74 #include <machine/pc/bios.h>
75 #include <machine/resource.h>
76
77 #ifdef DEV_APIC
78 #include "pcib_if.h"
79 #endif
80
81 #ifdef DEV_ISA
82 #include <isa/isavar.h>
83 #include <isa/isareg.h>
84 #endif
85
86 #define ELF_KERN_STR    ("elf"__XSTRING(__ELF_WORD_SIZE)" kernel")
87
88 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
89
90 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
91
92 struct rman irq_rman, drq_rman, port_rman, mem_rman;
93
94 static int nexus_print_all_resources(device_t dev);
95
96 static device_probe_t           nexus_probe;
97 static device_attach_t          nexus_attach;
98
99 static bus_add_child_t          nexus_add_child;
100 static bus_print_child_t        nexus_print_child;
101
102 static bus_activate_resource_t  nexus_activate_resource;
103 static bus_adjust_resource_t    nexus_adjust_resource;
104 static bus_alloc_resource_t     nexus_alloc_resource;
105 static bus_deactivate_resource_t nexus_deactivate_resource;
106 static bus_delete_resource_t    nexus_delete_resource;
107 static bus_get_resource_t       nexus_get_resource;
108 static bus_get_resource_list_t  nexus_get_reslist;
109 static bus_map_resource_t       nexus_map_resource;
110 static bus_release_resource_t   nexus_release_resource;
111 static bus_set_resource_t       nexus_set_resource;
112 static bus_unmap_resource_t     nexus_unmap_resource;
113
114 #ifdef SMP
115 static bus_bind_intr_t          nexus_bind_intr;
116 #endif
117 static bus_config_intr_t        nexus_config_intr;
118 static bus_describe_intr_t      nexus_describe_intr;
119 static bus_resume_intr_t        nexus_resume_intr;
120 static bus_setup_intr_t         nexus_setup_intr;
121 static bus_suspend_intr_t       nexus_suspend_intr;
122 static bus_teardown_intr_t      nexus_teardown_intr;
123
124 static bus_get_cpus_t           nexus_get_cpus;
125
126 #if defined(DEV_APIC) && defined(DEV_PCI)
127 static pcib_alloc_msi_t         nexus_alloc_msi;
128 static pcib_release_msi_t       nexus_release_msi;
129 static pcib_alloc_msix_t        nexus_alloc_msix;
130 static pcib_release_msix_t      nexus_release_msix;
131 static pcib_map_msi_t           nexus_map_msi;
132 #endif
133
134 static device_method_t nexus_methods[] = {
135         /* Device interface */
136         DEVMETHOD(device_probe,         nexus_probe),
137         DEVMETHOD(device_attach,        nexus_attach),
138         DEVMETHOD(device_detach,        bus_generic_detach),
139         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
140         DEVMETHOD(device_suspend,       bus_generic_suspend),
141         DEVMETHOD(device_resume,        bus_generic_resume),
142
143         /* Bus interface */
144         DEVMETHOD(bus_print_child,      nexus_print_child),
145         DEVMETHOD(bus_add_child,        nexus_add_child),
146         DEVMETHOD(bus_activate_resource, nexus_activate_resource),
147         DEVMETHOD(bus_adjust_resource,  nexus_adjust_resource),
148         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
149         DEVMETHOD(bus_deactivate_resource, nexus_deactivate_resource),
150         DEVMETHOD(bus_get_resource,     nexus_get_resource),
151         DEVMETHOD(bus_get_resource_list, nexus_get_reslist),
152         DEVMETHOD(bus_delete_resource,  nexus_delete_resource),
153         DEVMETHOD(bus_map_resource,     nexus_map_resource),
154         DEVMETHOD(bus_release_resource, nexus_release_resource),
155         DEVMETHOD(bus_set_resource,     nexus_set_resource),
156         DEVMETHOD(bus_unmap_resource,   nexus_unmap_resource),
157 #ifdef SMP
158         DEVMETHOD(bus_bind_intr,        nexus_bind_intr),
159 #endif
160         DEVMETHOD(bus_config_intr,      nexus_config_intr),
161         DEVMETHOD(bus_describe_intr,    nexus_describe_intr),
162         DEVMETHOD(bus_resume_intr,      nexus_resume_intr),
163         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
164         DEVMETHOD(bus_suspend_intr,     nexus_suspend_intr),
165         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
166         DEVMETHOD(bus_get_cpus,         nexus_get_cpus),
167
168         /* pcib interface */
169 #if defined(DEV_APIC) && defined(DEV_PCI)
170         DEVMETHOD(pcib_alloc_msi,       nexus_alloc_msi),
171         DEVMETHOD(pcib_release_msi,     nexus_release_msi),
172         DEVMETHOD(pcib_alloc_msix,      nexus_alloc_msix),
173         DEVMETHOD(pcib_release_msix,    nexus_release_msix),
174         DEVMETHOD(pcib_map_msi,         nexus_map_msi),
175 #endif
176         DEVMETHOD_END
177 };
178
179 DEFINE_CLASS_0(nexus, nexus_driver, nexus_methods, 1);
180 static devclass_t nexus_devclass;
181
182 DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0);
183
184 static int
185 nexus_probe(device_t dev)
186 {
187
188         device_quiet(dev);      /* suppress attach message for neatness */
189         return (BUS_PROBE_GENERIC);
190 }
191
192 void
193 nexus_init_resources(void)
194 {
195         int irq;
196
197         /*
198          * XXX working notes:
199          *
200          * - IRQ resource creation should be moved to the PIC/APIC driver.
201          * - DRQ resource creation should be moved to the DMAC driver.
202          * - The above should be sorted to probe earlier than any child buses.
203          *
204          * - Leave I/O and memory creation here, as child probes may need them.
205          *   (especially eg. ACPI)
206          */
207
208         /*
209          * IRQ's are on the mainboard on old systems, but on the ISA part
210          * of PCI->ISA bridges.  There would be multiple sets of IRQs on
211          * multi-ISA-bus systems.  PCI interrupts are routed to the ISA
212          * component, so in a way, PCI can be a partial child of an ISA bus(!).
213          * APIC interrupts are global though.
214          */
215         irq_rman.rm_start = 0;
216         irq_rman.rm_type = RMAN_ARRAY;
217         irq_rman.rm_descr = "Interrupt request lines";
218         irq_rman.rm_end = num_io_irqs - 1;
219         if (rman_init(&irq_rman))
220                 panic("nexus_init_resources irq_rman");
221
222         /*
223          * We search for regions of existing IRQs and add those to the IRQ
224          * resource manager.
225          */
226         for (irq = 0; irq < num_io_irqs; irq++)
227                 if (intr_lookup_source(irq) != NULL)
228                         if (rman_manage_region(&irq_rman, irq, irq) != 0)
229                                 panic("nexus_init_resources irq_rman add");
230
231         /*
232          * ISA DMA on PCI systems is implemented in the ISA part of each
233          * PCI->ISA bridge and the channels can be duplicated if there are
234          * multiple bridges.  (eg: laptops with docking stations)
235          */
236         drq_rman.rm_start = 0;
237         drq_rman.rm_end = 7;
238         drq_rman.rm_type = RMAN_ARRAY;
239         drq_rman.rm_descr = "DMA request lines";
240         /* XXX drq 0 not available on some machines */
241         if (rman_init(&drq_rman)
242             || rman_manage_region(&drq_rman,
243                                   drq_rman.rm_start, drq_rman.rm_end))
244                 panic("nexus_init_resources drq_rman");
245
246         /*
247          * However, IO ports and Memory truely are global at this level,
248          * as are APIC interrupts (however many IO APICS there turn out
249          * to be on large systems..)
250          */
251         port_rman.rm_start = 0;
252         port_rman.rm_end = 0xffff;
253         port_rman.rm_type = RMAN_ARRAY;
254         port_rman.rm_descr = "I/O ports";
255         if (rman_init(&port_rman)
256             || rman_manage_region(&port_rman, 0, 0xffff))
257                 panic("nexus_init_resources port_rman");
258
259         mem_rman.rm_start = 0;
260         mem_rman.rm_end = cpu_getmaxphyaddr();
261         mem_rman.rm_type = RMAN_ARRAY;
262         mem_rman.rm_descr = "I/O memory addresses";
263         if (rman_init(&mem_rman)
264             || rman_manage_region(&mem_rman, 0, mem_rman.rm_end))
265                 panic("nexus_init_resources mem_rman");
266 }
267
268 static int
269 nexus_attach(device_t dev)
270 {
271
272         nexus_init_resources();
273         bus_generic_probe(dev);
274
275         /*
276          * Explicitly add the legacy0 device here.  Other platform
277          * types (such as ACPI), use their own nexus(4) subclass
278          * driver to override this routine and add their own root bus.
279          */
280         if (BUS_ADD_CHILD(dev, 10, "legacy", 0) == NULL)
281                 panic("legacy: could not attach");
282         bus_generic_attach(dev);
283         return (0);
284 }
285
286 static int
287 nexus_print_all_resources(device_t dev)
288 {
289         struct  nexus_device *ndev = DEVTONX(dev);
290         struct resource_list *rl = &ndev->nx_resources;
291         int retval = 0;
292
293         if (STAILQ_FIRST(rl))
294                 retval += printf(" at");
295
296         retval += resource_list_print_type(rl, "port", SYS_RES_IOPORT, "%#jx");
297         retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#jx");
298         retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%jd");
299
300         return (retval);
301 }
302
303 static int
304 nexus_print_child(device_t bus, device_t child)
305 {
306         int retval = 0;
307
308         retval += bus_print_child_header(bus, child);
309         retval += nexus_print_all_resources(child);
310         if (device_get_flags(child))
311                 retval += printf(" flags %#x", device_get_flags(child));
312         retval += printf("\n");
313
314         return (retval);
315 }
316
317 static device_t
318 nexus_add_child(device_t bus, u_int order, const char *name, int unit)
319 {
320         device_t                child;
321         struct nexus_device     *ndev;
322
323         ndev = malloc(sizeof(struct nexus_device), M_NEXUSDEV, M_NOWAIT|M_ZERO);
324         if (!ndev)
325                 return (0);
326         resource_list_init(&ndev->nx_resources);
327
328         child = device_add_child_ordered(bus, order, name, unit);
329
330         /* should we free this in nexus_child_detached? */
331         device_set_ivars(child, ndev);
332
333         return (child);
334 }
335
336 static struct rman *
337 nexus_rman(int type)
338 {
339         switch (type) {
340         case SYS_RES_IRQ:
341                 return (&irq_rman);
342         case SYS_RES_DRQ:
343                 return (&drq_rman);
344         case SYS_RES_IOPORT:
345                 return (&port_rman);
346         case SYS_RES_MEMORY:
347                 return (&mem_rman);
348         default:
349                 return (NULL);
350         }
351 }
352
353 /*
354  * Allocate a resource on behalf of child.  NB: child is usually going to be a
355  * child of one of our descendants, not a direct child of nexus0.
356  */
357 static struct resource *
358 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid,
359                      rman_res_t start, rman_res_t end, rman_res_t count,
360                      u_int flags)
361 {
362         struct nexus_device *ndev = DEVTONX(child);
363         struct  resource *rv;
364         struct resource_list_entry *rle;
365         struct  rman *rm;
366         int needactivate = flags & RF_ACTIVE;
367
368         /*
369          * If this is an allocation of the "default" range for a given
370          * RID, and we know what the resources for this device are
371          * (ie. they aren't maintained by a child bus), then work out
372          * the start/end values.
373          */
374         if (RMAN_IS_DEFAULT_RANGE(start, end) && (count == 1)) {
375                 if (device_get_parent(child) != bus || ndev == NULL)
376                         return (NULL);
377                 rle = resource_list_find(&ndev->nx_resources, type, *rid);
378                 if (rle == NULL)
379                         return (NULL);
380                 start = rle->start;
381                 end = rle->end;
382                 count = rle->count;
383         }
384
385         flags &= ~RF_ACTIVE;
386         rm = nexus_rman(type);
387         if (rm == NULL)
388                 return (NULL);
389
390         rv = rman_reserve_resource(rm, start, end, count, flags, child);
391         if (rv == NULL)
392                 return (0);
393         rman_set_rid(rv, *rid);
394
395         if (needactivate) {
396                 if (bus_activate_resource(child, type, *rid, rv)) {
397                         rman_release_resource(rv);
398                         return (0);
399                 }
400         }
401
402         return (rv);
403 }
404
405 static int
406 nexus_adjust_resource(device_t bus, device_t child, int type,
407     struct resource *r, rman_res_t start, rman_res_t end)
408 {
409         struct rman *rm;
410
411         rm = nexus_rman(type);
412         if (rm == NULL)
413                 return (ENXIO);
414         if (!rman_is_region_manager(r, rm))
415                 return (EINVAL);
416         return (rman_adjust_resource(r, start, end));
417 }
418
419 static int
420 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
421                         struct resource *r)
422 {
423         struct resource_map map;
424         int error;
425
426         error = rman_activate_resource(r);
427         if (error != 0)
428                 return (error);
429
430         if (!(rman_get_flags(r) & RF_UNMAPPED) &&
431             (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT)) {
432                 error = nexus_map_resource(bus, child, type, r, NULL, &map);
433                 if (error) {
434                         rman_deactivate_resource(r);
435                         return (error);
436                 }
437
438                 rman_set_mapping(r,&map);
439         }
440         return (0);
441 }
442
443 static int
444 nexus_deactivate_resource(device_t bus, device_t child, int type, int rid,
445                           struct resource *r)
446 {
447         struct resource_map map;
448         int error;
449
450         error = rman_deactivate_resource(r);
451         if (error)
452                 return (error);
453
454         if (!(rman_get_flags(r) & RF_UNMAPPED) &&
455             (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT)) {
456                 rman_get_mapping(r, &map);
457                 nexus_unmap_resource(bus, child, type, r, &map);
458         }
459         return (0);
460 }
461
462 static int
463 nexus_map_resource(device_t bus, device_t child, int type, struct resource *r,
464     struct resource_map_request *argsp, struct resource_map *map)
465 {
466         struct resource_map_request args;
467         rman_res_t end, length, start;
468
469         /* Resources must be active to be mapped. */
470         if (!(rman_get_flags(r) & RF_ACTIVE))
471                 return (ENXIO);
472
473         /* Mappings are only supported on I/O and memory resources. */
474         switch (type) {
475         case SYS_RES_IOPORT:
476         case SYS_RES_MEMORY:
477                 break;
478         default:
479                 return (EINVAL);
480         }
481
482         resource_init_map_request(&args);
483         if (argsp != NULL)
484                 bcopy(argsp, &args, imin(argsp->size, args.size));
485         start = rman_get_start(r) + args.offset;
486         if (args.length == 0)
487                 length = rman_get_size(r);
488         else
489                 length = args.length;
490         end = start + length - 1;
491         if (start > rman_get_end(r) || start < rman_get_start(r))
492                 return (EINVAL);
493         if (end > rman_get_end(r) || end < start)
494                 return (EINVAL);
495
496         /*
497          * If this is a memory resource, map it into the kernel.
498          */
499         switch (type) {
500         case SYS_RES_IOPORT:
501                 map->r_bushandle = start;
502                 map->r_bustag = X86_BUS_SPACE_IO;
503                 map->r_size = length;
504                 map->r_vaddr = NULL;
505                 break;
506         case SYS_RES_MEMORY:
507                 map->r_vaddr = pmap_mapdev_attr(start, length, args.memattr);
508                 map->r_bustag = X86_BUS_SPACE_MEM;
509                 map->r_size = length;
510
511                 /*
512                  * The handle is the virtual address.
513                  */
514                 map->r_bushandle = (bus_space_handle_t)map->r_vaddr;
515                 break;
516         }
517         return (0);
518 }
519
520 static int
521 nexus_unmap_resource(device_t bus, device_t child, int type, struct resource *r,
522     struct resource_map *map)
523 {
524
525         /*
526          * If this is a memory resource, unmap it.
527          */
528         switch (type) {
529         case SYS_RES_MEMORY:
530                 pmap_unmapdev((vm_offset_t)map->r_vaddr, map->r_size);
531                 /* FALLTHROUGH */
532         case SYS_RES_IOPORT:
533                 break;
534         default:
535                 return (EINVAL);
536         }
537         return (0);
538 }
539
540 static int
541 nexus_release_resource(device_t bus, device_t child, int type, int rid,
542                        struct resource *r)
543 {
544         int error;
545
546         if (rman_get_flags(r) & RF_ACTIVE) {
547                 error = bus_deactivate_resource(child, type, rid, r);
548                 if (error != 0)
549                         return (error);
550         }
551         return (rman_release_resource(r));
552 }
553
554 /*
555  * Currently this uses the really grody interface from kern/kern_intr.c
556  * (which really doesn't belong in kern/anything.c).  Eventually, all of
557  * the code in kern_intr.c and machdep_intr.c should get moved here, since
558  * this is going to be the official interface.
559  */
560 static int
561 nexus_setup_intr(device_t bus, device_t child, struct resource *irq,
562                  int flags, driver_filter_t filter, void (*ihand)(void *),
563                  void *arg, void **cookiep)
564 {
565         int             error, domain;
566
567         /* somebody tried to setup an irq that failed to allocate! */
568         if (irq == NULL)
569                 panic("nexus_setup_intr: NULL irq resource!");
570
571         *cookiep = NULL;
572         if ((rman_get_flags(irq) & RF_SHAREABLE) == 0)
573                 flags |= INTR_EXCL;
574
575         /*
576          * We depend here on rman_activate_resource() being idempotent.
577          */
578         error = rman_activate_resource(irq);
579         if (error != 0)
580                 return (error);
581         if (bus_get_domain(child, &domain) != 0)
582                 domain = 0;
583
584         error = intr_add_handler(device_get_nameunit(child),
585             rman_get_start(irq), filter, ihand, arg, flags, cookiep, domain);
586         if (error == 0)
587                 rman_set_irq_cookie(irq, *cookiep);
588
589         return (error);
590 }
591
592 static int
593 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
594 {
595         int error;
596
597         error = intr_remove_handler(ih);
598         if (error == 0)
599                 rman_set_irq_cookie(r, NULL);
600         return (error);
601 }
602
603 static int
604 nexus_suspend_intr(device_t dev, device_t child, struct resource *irq)
605 {
606         return (intr_event_suspend_handler(rman_get_irq_cookie(irq)));
607 }
608
609 static int
610 nexus_resume_intr(device_t dev, device_t child, struct resource *irq)
611 {
612         return (intr_event_resume_handler(rman_get_irq_cookie(irq)));
613 }
614
615 #ifdef SMP
616 static int
617 nexus_bind_intr(device_t dev, device_t child, struct resource *irq, int cpu)
618 {
619         return (intr_bind(rman_get_start(irq), cpu));
620 }
621 #endif
622
623 static int
624 nexus_config_intr(device_t dev, int irq, enum intr_trigger trig,
625     enum intr_polarity pol)
626 {
627         return (intr_config_intr(irq, trig, pol));
628 }
629
630 static int
631 nexus_describe_intr(device_t dev, device_t child, struct resource *irq,
632     void *cookie, const char *descr)
633 {
634
635         return (intr_describe(rman_get_start(irq), cookie, descr));
636 }
637
638 static struct resource_list *
639 nexus_get_reslist(device_t dev, device_t child)
640 {
641         struct nexus_device *ndev = DEVTONX(child);
642
643         return (&ndev->nx_resources);
644 }
645
646 static int
647 nexus_set_resource(device_t dev, device_t child, int type, int rid,
648     rman_res_t start, rman_res_t count)
649 {
650         struct nexus_device     *ndev = DEVTONX(child);
651         struct resource_list    *rl = &ndev->nx_resources;
652
653         /* XXX this should return a success/failure indicator */
654         resource_list_add(rl, type, rid, start, start + count - 1, count);
655         return (0);
656 }
657
658 static int
659 nexus_get_resource(device_t dev, device_t child, int type, int rid,
660     rman_res_t *startp, rman_res_t *countp)
661 {
662         struct nexus_device     *ndev = DEVTONX(child);
663         struct resource_list    *rl = &ndev->nx_resources;
664         struct resource_list_entry *rle;
665
666         rle = resource_list_find(rl, type, rid);
667         if (!rle)
668                 return (ENOENT);
669         if (startp)
670                 *startp = rle->start;
671         if (countp)
672                 *countp = rle->count;
673         return (0);
674 }
675
676 static void
677 nexus_delete_resource(device_t dev, device_t child, int type, int rid)
678 {
679         struct nexus_device     *ndev = DEVTONX(child);
680         struct resource_list    *rl = &ndev->nx_resources;
681
682         resource_list_delete(rl, type, rid);
683 }
684
685 static int
686 nexus_get_cpus(device_t dev, device_t child, enum cpu_sets op, size_t setsize,
687     cpuset_t *cpuset)
688 {
689
690         switch (op) {
691 #ifdef SMP
692         case INTR_CPUS:
693                 if (setsize != sizeof(cpuset_t))
694                         return (EINVAL);
695                 *cpuset = intr_cpus;
696                 return (0);
697 #endif
698         default:
699                 return (bus_generic_get_cpus(dev, child, op, setsize, cpuset));
700         }
701 }
702
703 /* Called from the MSI code to add new IRQs to the IRQ rman. */
704 void
705 nexus_add_irq(u_long irq)
706 {
707
708         if (rman_manage_region(&irq_rman, irq, irq) != 0)
709                 panic("%s: failed", __func__);
710 }
711
712 #if defined(DEV_APIC) && defined(DEV_PCI)
713 static int
714 nexus_alloc_msix(device_t pcib, device_t dev, int *irq)
715 {
716
717         return (msix_alloc(dev, irq));
718 }
719
720 static int
721 nexus_release_msix(device_t pcib, device_t dev, int irq)
722 {
723
724         return (msix_release(irq));
725 }
726
727 static int
728 nexus_alloc_msi(device_t pcib, device_t dev, int count, int maxcount, int *irqs)
729 {
730
731         return (msi_alloc(dev, count, maxcount, irqs));
732 }
733
734 static int
735 nexus_release_msi(device_t pcib, device_t dev, int count, int *irqs)
736 {
737
738         return (msi_release(irqs, count));
739 }
740
741 static int
742 nexus_map_msi(device_t pcib, device_t dev, int irq, uint64_t *addr, uint32_t *data)
743 {
744
745         return (msi_map(irq, addr, data));
746 }
747 #endif /* DEV_APIC && DEV_PCI */
748
749 /* Placeholder for system RAM. */
750 static void
751 ram_identify(driver_t *driver, device_t parent)
752 {
753
754         if (resource_disabled("ram", 0))
755                 return; 
756         if (BUS_ADD_CHILD(parent, 0, "ram", 0) == NULL)
757                 panic("ram_identify");
758 }
759
760 static int
761 ram_probe(device_t dev)
762 {
763
764         device_quiet(dev);
765         device_set_desc(dev, "System RAM");
766         return (0);
767 }
768
769 static int
770 ram_attach(device_t dev)
771 {
772         struct bios_smap *smapbase, *smap, *smapend;
773         struct resource *res;
774         rman_res_t length;
775         vm_paddr_t *p;
776         caddr_t kmdp;
777         uint32_t smapsize;
778         int error, rid;
779
780         /* Retrieve the system memory map from the loader. */
781         kmdp = preload_search_by_type("elf kernel");
782         if (kmdp == NULL)
783                 kmdp = preload_search_by_type(ELF_KERN_STR);
784         smapbase = (struct bios_smap *)preload_search_info(kmdp,
785             MODINFO_METADATA | MODINFOMD_SMAP);
786         if (smapbase != NULL) {
787                 smapsize = *((u_int32_t *)smapbase - 1);
788                 smapend = (struct bios_smap *)((uintptr_t)smapbase + smapsize);
789
790                 rid = 0;
791                 for (smap = smapbase; smap < smapend; smap++) {
792                         if (smap->type != SMAP_TYPE_MEMORY ||
793                             smap->length == 0)
794                                 continue;
795                         if (smap->base > mem_rman.rm_end)
796                                 continue;
797                         length = smap->base + smap->length > mem_rman.rm_end ?
798                             mem_rman.rm_end - smap->base : smap->length;
799                         error = bus_set_resource(dev, SYS_RES_MEMORY, rid,
800                             smap->base, length);
801                         if (error)
802                                 panic(
803                                     "ram_attach: resource %d failed set with %d",
804                                     rid, error);
805                         res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid,
806                             0);
807                         if (res == NULL)
808                                 panic("ram_attach: resource %d failed to attach",
809                                     rid);
810                         rid++;
811                 }
812                 return (0);
813         }
814
815         /*
816          * If the system map is not available, fall back to using
817          * dump_avail[].  We use the dump_avail[] array rather than
818          * phys_avail[] for the memory map as phys_avail[] contains
819          * holes for kernel memory, page 0, the message buffer, and
820          * the dcons buffer.  We test the end address in the loop
821          * instead of the start since the start address for the first
822          * segment is 0.
823          */
824         for (rid = 0, p = dump_avail; p[1] != 0; rid++, p += 2) {
825                 if (p[0] > mem_rman.rm_end)
826                         break;
827                 length = (p[1] > mem_rman.rm_end ? mem_rman.rm_end : p[1]) -
828                     p[0];
829                 error = bus_set_resource(dev, SYS_RES_MEMORY, rid, p[0],
830                     length);
831                 if (error)
832                         panic("ram_attach: resource %d failed set with %d", rid,
833                             error);
834                 res = bus_alloc_resource_any(dev, SYS_RES_MEMORY, &rid, 0);
835                 if (res == NULL)
836                         panic("ram_attach: resource %d failed to attach", rid);
837         }
838         return (0);
839 }
840
841 static device_method_t ram_methods[] = {
842         /* Device interface */
843         DEVMETHOD(device_identify,      ram_identify),
844         DEVMETHOD(device_probe,         ram_probe),
845         DEVMETHOD(device_attach,        ram_attach),
846
847         DEVMETHOD_END
848 };
849
850 static driver_t ram_driver = {
851         "ram",
852         ram_methods,
853         1,              /* no softc */
854 };
855
856 static devclass_t ram_devclass;
857
858 DRIVER_MODULE(ram, nexus, ram_driver, ram_devclass, 0, 0);
859
860 #ifdef DEV_ISA
861 /*
862  * Placeholder which claims PnP 'devices' which describe system
863  * resources.
864  */
865 static struct isa_pnp_id sysresource_ids[] = {
866         { 0x010cd041 /* PNP0c01 */, "System Memory" },
867         { 0x020cd041 /* PNP0c02 */, "System Resource" },
868         { 0 }
869 };
870
871 static int
872 sysresource_probe(device_t dev)
873 {
874         int     result;
875
876         if ((result = ISA_PNP_PROBE(device_get_parent(dev), dev, sysresource_ids)) <= 0) {
877                 device_quiet(dev);
878         }
879         return (result);
880 }
881
882 static int
883 sysresource_attach(device_t dev)
884 {
885         return (0);
886 }
887
888 static device_method_t sysresource_methods[] = {
889         /* Device interface */
890         DEVMETHOD(device_probe,         sysresource_probe),
891         DEVMETHOD(device_attach,        sysresource_attach),
892         DEVMETHOD(device_detach,        bus_generic_detach),
893         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
894         DEVMETHOD(device_suspend,       bus_generic_suspend),
895         DEVMETHOD(device_resume,        bus_generic_resume),
896
897         DEVMETHOD_END
898 };
899
900 static driver_t sysresource_driver = {
901         "sysresource",
902         sysresource_methods,
903         1,              /* no softc */
904 };
905
906 static devclass_t sysresource_devclass;
907
908 DRIVER_MODULE(sysresource, isa, sysresource_driver, sysresource_devclass, 0, 0);
909 ISA_PNP_INFO(sysresource_ids);
910 #endif /* DEV_ISA */