Merge from vendor branch GDB:
[dragonfly.git] / sys / platform / pc32 / i386 / 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  * $FreeBSD: src/sys/i386/i386/nexus.c,v 1.26.2.10 2003/02/22 13:16:45 imp Exp $
30  * $DragonFly: src/sys/platform/pc32/i386/nexus.c,v 1.11 2004/10/14 03:05:52 dillon Exp $
31  */
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 #include "use_mca.h"
45
46 #include <sys/param.h>
47 #include <sys/systm.h>
48 #include <sys/bus.h>
49 #include <sys/kernel.h>
50 #include <sys/malloc.h>
51 #include <sys/module.h>
52 #include <machine/bus.h>
53 #include <sys/rman.h>
54
55 #include <machine/vmparam.h>
56 #include <vm/vm.h>
57 #include <vm/pmap.h>
58 #include <machine/pmap.h>
59
60 #include <machine/nexusvar.h>
61 #include <machine/resource.h>
62 #ifdef APIC_IO
63 #include <machine/smp.h>
64 #include <machine/mpapic.h>
65 #endif
66
67 #include <bus/isa/isavar.h>
68 #ifdef PC98
69 #include <pc98/pc98/pc98.h>
70 #else
71 #include <bus/isa/i386/isa.h>
72 #endif
73 #include <i386/isa/intr_machdep.h>
74
75 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
76 struct nexus_device {
77         struct resource_list    nx_resources;
78         int                     nx_pcibus;
79 };
80
81 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
82
83 static struct rman irq_rman, drq_rman, port_rman, mem_rman;
84
85 static void nexus_identify(driver_t *, device_t);
86 static  int nexus_probe(device_t);
87 static  int nexus_attach(device_t);
88 static  int nexus_print_all_resources(device_t dev);
89 static  int nexus_print_child(device_t, device_t);
90 static device_t nexus_add_child(device_t bus, int order, const char *name,
91                                 int unit);
92 static  struct resource *nexus_alloc_resource(device_t, device_t, int, int *,
93                                               u_long, u_long, u_long, u_int);
94 static  int nexus_read_ivar(device_t, device_t, int, uintptr_t *);
95 static  int nexus_write_ivar(device_t, device_t, int, uintptr_t);
96 static  int nexus_activate_resource(device_t, device_t, int, int,
97                                     struct resource *);
98 static  int nexus_deactivate_resource(device_t, device_t, int, int,
99                                       struct resource *);
100 static  int nexus_release_resource(device_t, device_t, int, int,
101                                    struct resource *);
102 static  int nexus_setup_intr(device_t, device_t, struct resource *, int flags,
103                              void (*)(void *), void *, void **);
104 static  int nexus_teardown_intr(device_t, device_t, struct resource *,
105                                 void *);
106 static  int nexus_set_resource(device_t, device_t, int, int, u_long, u_long);
107 static  int nexus_get_resource(device_t, device_t, int, int, u_long *, u_long *);
108 static void nexus_delete_resource(device_t, device_t, int, int);
109
110 static device_method_t nexus_methods[] = {
111         /* Device interface */
112         DEVMETHOD(device_identify,      nexus_identify),
113         DEVMETHOD(device_probe,         nexus_probe),
114         DEVMETHOD(device_attach,        nexus_attach),
115         DEVMETHOD(device_detach,        bus_generic_detach),
116         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
117         DEVMETHOD(device_suspend,       bus_generic_suspend),
118         DEVMETHOD(device_resume,        bus_generic_resume),
119
120         /* Bus interface */
121         DEVMETHOD(bus_print_child,      nexus_print_child),
122         DEVMETHOD(bus_add_child,        nexus_add_child),
123         DEVMETHOD(bus_read_ivar,        nexus_read_ivar),
124         DEVMETHOD(bus_write_ivar,       nexus_write_ivar),
125         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
126         DEVMETHOD(bus_release_resource, nexus_release_resource),
127         DEVMETHOD(bus_activate_resource, nexus_activate_resource),
128         DEVMETHOD(bus_deactivate_resource, nexus_deactivate_resource),
129         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
130         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
131         DEVMETHOD(bus_set_resource,     nexus_set_resource),
132         DEVMETHOD(bus_get_resource,     nexus_get_resource),
133         DEVMETHOD(bus_delete_resource,  nexus_delete_resource),
134
135         { 0, 0 }
136 };
137
138 static driver_t nexus_driver = {
139         "nexus",
140         nexus_methods,
141         1,                      /* no softc */
142 };
143 static devclass_t nexus_devclass;
144
145 DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0);
146
147 static void
148 nexus_identify(driver_t *driver, device_t parent)
149 {
150         /*
151          * Add child device with order of 1 so it gets probed
152          * after ACPI (which is at order 0.
153          */
154         if (BUS_ADD_CHILD(parent, 1, "legacy", 0) == NULL)
155                 panic("legacy: could not attach");
156 }
157
158 static int
159 nexus_probe(device_t dev)
160 {
161 #if 0   /* FUTURE */
162         device_t acpi;
163 #endif
164
165 #if 0   /* FUTURE */
166         /*
167          * Fail to probe if ACPI is ok.
168          */
169         acpi = devclass_get_device(devclass_find("acpi"), 0);
170         if (acpi != NULL && device_is_alive(acpi))
171                 return(ENXIO);
172 #endif
173
174         device_quiet(dev);      /* suppress attach message for neatness */
175
176         /*
177          * IRQ's are on the mainboard on old systems, but on the ISA part
178          * of PCI->ISA bridges.  There would be multiple sets of IRQs on
179          * multi-ISA-bus systems.  PCI interrupts are routed to the ISA
180          * component, so in a way, PCI can be a partial child of an ISA bus(!).
181          * APIC interrupts are global though.
182          * In the non-APIC case, disallow the use of IRQ 2.
183          */
184         irq_rman.rm_start = 0;
185         irq_rman.rm_type = RMAN_ARRAY;
186         irq_rman.rm_descr = "Interrupt request lines";
187 #ifdef APIC_IO
188         irq_rman.rm_end = APIC_INTMAPSIZE - 1;
189         if (rman_init(&irq_rman)
190             || rman_manage_region(&irq_rman,
191                                   irq_rman.rm_start, irq_rman.rm_end))
192                 panic("nexus_probe irq_rman");
193 #else
194         irq_rman.rm_end = 15;
195 #ifdef PC98
196         if (rman_init(&irq_rman)
197             || rman_manage_region(&irq_rman,
198                                   irq_rman.rm_start, irq_rman.rm_end))
199                 panic("nexus_probe irq_rman");
200 #else
201         if (rman_init(&irq_rman)
202             || rman_manage_region(&irq_rman, irq_rman.rm_start, 1)
203             || rman_manage_region(&irq_rman, 3, irq_rman.rm_end))
204                 panic("nexus_probe irq_rman");
205 #endif /* PC98 */
206 #endif
207
208         /*
209          * ISA DMA on PCI systems is implemented in the ISA part of each
210          * PCI->ISA bridge and the channels can be duplicated if there are
211          * multiple bridges.  (eg: laptops with docking stations)
212          */
213         drq_rman.rm_start = 0;
214 #ifdef PC98
215         drq_rman.rm_end = 3;
216 #else
217         drq_rman.rm_end = 7;
218 #endif
219         drq_rman.rm_type = RMAN_ARRAY;
220         drq_rman.rm_descr = "DMA request lines";
221         /* XXX drq 0 not available on some machines */
222         if (rman_init(&drq_rman)
223             || rman_manage_region(&drq_rman,
224                                   drq_rman.rm_start, drq_rman.rm_end))
225                 panic("nexus_probe drq_rman");
226
227         /*
228          * However, IO ports and Memory truely are global at this level,
229          * as are APIC interrupts (however many IO APICS there turn out
230          * to be on large systems..)
231          */
232         port_rman.rm_start = 0;
233         port_rman.rm_end = 0xffff;
234         port_rman.rm_type = RMAN_ARRAY;
235         port_rman.rm_descr = "I/O ports";
236         if (rman_init(&port_rman)
237             || rman_manage_region(&port_rman, 0, 0xffff))
238                 panic("nexus_probe port_rman");
239
240         mem_rman.rm_start = 0;
241         mem_rman.rm_end = ~0u;
242         mem_rman.rm_type = RMAN_ARRAY;
243         mem_rman.rm_descr = "I/O memory addresses";
244         if (rman_init(&mem_rman)
245             || rman_manage_region(&mem_rman, 0, ~0))
246                 panic("nexus_probe mem_rman");
247
248         return bus_generic_probe(dev);
249 }
250
251 static int
252 nexus_attach(device_t dev)
253 {
254         device_t        child;
255
256         /*
257          * First, let our child driver's identify any child devices that
258          * they can find.  Once that is done attach any devices that we
259          * found.
260          */
261 #if 0 /* FUTURE */
262         bus_generic_probe(dev);
263 #endif
264         bus_generic_attach(dev);
265
266         /*
267          * And if we didn't see EISA or ISA on a pci bridge, create some
268          * connection points now so they show up "on motherboard".
269          */
270         if (!devclass_get_device(devclass_find("eisa"), 0)) {
271                 child = BUS_ADD_CHILD(dev, 0, "eisa", 0);
272                 if (child == NULL)
273                         panic("nexus_attach eisa");
274                 device_probe_and_attach(child);
275         }
276 #if NMCA > 0
277         if (!devclass_get_device(devclass_find("mca"), 0)) {
278                 child = BUS_ADD_CHILD(dev, 0, "mca", 0);
279                 if (child == NULL)
280                         panic("nexus_probe mca");
281                 device_probe_and_attach(child);
282         }
283 #endif
284         if (!devclass_get_device(devclass_find("isa"), 0)) {
285                 child = BUS_ADD_CHILD(dev, 0, "isa", 0);
286                 if (child == NULL)
287                         panic("nexus_attach isa");
288                 device_probe_and_attach(child);
289         }
290
291         return 0;
292 }
293
294 static int
295 nexus_print_all_resources(device_t dev)
296 {
297         struct  nexus_device *ndev = DEVTONX(dev);
298         struct resource_list *rl = &ndev->nx_resources;
299         int retval = 0;
300
301         if (SLIST_FIRST(rl) || ndev->nx_pcibus != -1)
302                 retval += printf(" at");
303         
304         retval += resource_list_print_type(rl, "port", SYS_RES_IOPORT, "%#lx");
305         retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#lx");
306         retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld");
307
308         return retval;
309 }
310
311 static int
312 nexus_print_child(device_t bus, device_t child)
313 {
314         struct  nexus_device *ndev = DEVTONX(child);
315         int retval = 0;
316
317         retval += bus_print_child_header(bus, child);
318         retval += nexus_print_all_resources(child);
319         if (ndev->nx_pcibus != -1)
320                 retval += printf(" pcibus %d", ndev->nx_pcibus);
321         retval += printf(" on motherboard\n");
322
323         return (retval);
324 }
325
326 static device_t
327 nexus_add_child(device_t bus, int order, const char *name, int unit)
328 {
329         device_t                child;
330         struct nexus_device     *ndev;
331
332         ndev = malloc(sizeof(struct nexus_device), M_NEXUSDEV, M_INTWAIT|M_ZERO);
333         if (!ndev)
334                 return(0);
335         resource_list_init(&ndev->nx_resources);
336         ndev->nx_pcibus = -1;
337
338         child = device_add_child_ordered(bus, order, name, unit); 
339
340         /* should we free this in nexus_child_detached? */
341         device_set_ivars(child, ndev);
342
343         return(child);
344 }
345
346 static int
347 nexus_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
348 {
349         struct nexus_device *ndev = DEVTONX(child);
350         
351         switch (which) {
352         case NEXUS_IVAR_PCIBUS:
353                 *result = ndev->nx_pcibus;
354                 break;
355         default:
356                 return ENOENT;
357         }
358         return 0;
359 }
360
361 static int
362 nexus_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
363 {
364         struct nexus_device *ndev = DEVTONX(child);
365         
366         switch (which) {
367         case NEXUS_IVAR_PCIBUS:
368                 ndev->nx_pcibus = value;
369                 break;
370         default:
371                 return ENOENT;
372         }
373         return 0;
374 }
375
376 /*
377  * Allocate a resource on behalf of child.  NB: child is usually going to be a
378  * child of one of our descendants, not a direct child of nexus0.
379  * (Exceptions include npx.)
380  */
381 static struct resource *
382 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid,
383                      u_long start, u_long end, u_long count, u_int flags)
384 {
385         struct nexus_device *ndev = DEVTONX(child);
386         struct  resource *rv;
387         struct resource_list_entry *rle;
388         struct  rman *rm;
389         int needactivate = flags & RF_ACTIVE;
390
391         /*
392          * If this is an allocation of the "default" range for a given RID, and
393          * we know what the resources for this device are (ie. they aren't maintained
394          * by a child bus), then work out the start/end values.
395          */
396         if ((start == 0UL) && (end == ~0UL) && (count == 1)) {
397                 if (ndev == NULL)
398                         return(NULL);
399                 rle = resource_list_find(&ndev->nx_resources, type, *rid);
400                 if (rle == NULL)
401                         return(NULL);
402                 start = rle->start;
403                 end = rle->end;
404                 count = rle->count;
405         }
406
407         flags &= ~RF_ACTIVE;
408
409         switch (type) {
410         case SYS_RES_IRQ:
411                 rm = &irq_rman;
412                 break;
413
414         case SYS_RES_DRQ:
415                 rm = &drq_rman;
416                 break;
417
418         case SYS_RES_IOPORT:
419                 rm = &port_rman;
420                 break;
421
422         case SYS_RES_MEMORY:
423                 rm = &mem_rman;
424                 break;
425
426         default:
427                 return 0;
428         }
429
430         rv = rman_reserve_resource(rm, start, end, count, flags, child);
431         if (rv == 0)
432                 return 0;
433
434         if (type == SYS_RES_MEMORY) {
435                 rman_set_bustag(rv, I386_BUS_SPACE_MEM);
436         } else if (type == SYS_RES_IOPORT) {
437                 rman_set_bustag(rv, I386_BUS_SPACE_IO);
438 #ifndef PC98
439                 rman_set_bushandle(rv, rv->r_start);
440 #endif
441         }
442
443 #ifdef PC98
444         if ((type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) &&
445             i386_bus_space_handle_alloc(rv->r_bustag, rv->r_start, count,
446                                         &rv->r_bushandle) != 0) {
447                 rman_release_resource(rv);
448                 return 0;
449         }
450 #endif
451
452         if (needactivate) {
453                 if (bus_activate_resource(child, type, *rid, rv)) {
454 #ifdef PC98
455                         if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) {
456                                 i386_bus_space_handle_free(rv->r_bustag,
457                                   rv->r_bushandle, rv->r_bushandle->bsh_sz);
458                         }
459 #endif
460                         rman_release_resource(rv);
461                         return 0;
462                 }
463         }
464         
465         return rv;
466 }
467
468 static int
469 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
470                         struct resource *r)
471 {
472         /*
473          * If this is a memory resource, map it into the kernel.
474          */
475         if (rman_get_bustag(r) == I386_BUS_SPACE_MEM) {
476                 caddr_t vaddr = 0;
477
478                 if (rman_get_end(r) < 1024 * 1024) {
479                         /*
480                          * The first 1Mb is mapped at KERNBASE.
481                          */
482                         vaddr = (caddr_t)(uintptr_t)(KERNBASE + rman_get_start(r));
483                 } else {
484                         u_int32_t paddr;
485                         u_int32_t psize;
486                         u_int32_t poffs;
487
488                         paddr = rman_get_start(r);
489                         psize = rman_get_size(r);
490
491                         poffs = paddr - trunc_page(paddr);
492                         vaddr = (caddr_t) pmap_mapdev(paddr-poffs, psize+poffs) + poffs;
493                 }
494                 rman_set_virtual(r, vaddr);
495 #ifdef PC98
496                 /* PC-98: the type of bus_space_handle_t is the structure. */
497                 r->r_bushandle->bsh_base = (bus_addr_t) vaddr;
498 #else
499                 /* IBM-PC: the type of bus_space_handle_t is u_int */
500                 rman_set_bushandle(r, (bus_space_handle_t) vaddr);
501 #endif
502         }
503         return (rman_activate_resource(r));
504 }
505
506 static int
507 nexus_deactivate_resource(device_t bus, device_t child, int type, int rid,
508                           struct resource *r)
509 {
510         /*
511          * If this is a memory resource, unmap it.
512          */
513         if ((rman_get_bustag(r) == I386_BUS_SPACE_MEM) &&
514             (rman_get_end(r) >= 1024 * 1024)) {
515                 u_int32_t psize;
516
517                 psize = rman_get_size(r);
518                 pmap_unmapdev((vm_offset_t)rman_get_virtual(r), psize);
519         }
520                 
521         return (rman_deactivate_resource(r));
522 }
523
524 static int
525 nexus_release_resource(device_t bus, device_t child, int type, int rid,
526                        struct resource *r)
527 {
528         if (rman_get_flags(r) & RF_ACTIVE) {
529                 int error = bus_deactivate_resource(child, type, rid, r);
530                 if (error)
531                         return error;
532         }
533 #ifdef PC98
534         if (type == SYS_RES_MEMORY || type == SYS_RES_IOPORT) {
535                 i386_bus_space_handle_free(r->r_bustag, r->r_bushandle,
536                                            r->r_bushandle->bsh_sz);
537         }
538 #endif
539         return (rman_release_resource(r));
540 }
541
542 /*
543  * Currently this uses the really grody interface from kern/kern_intr.c
544  * (which really doesn't belong in kern/anything.c).  Eventually, all of
545  * the code in kern_intr.c and machdep_intr.c should get moved here, since
546  * this is going to be the official interface.
547  */
548 static int
549 nexus_setup_intr(device_t bus, device_t child, struct resource *irq,
550                  int flags, void (*ihand)(void *), void *arg, void **cookiep)
551 {
552         intrmask_t      *mask;
553         driver_t        *driver;
554         int     error, icflags;
555
556         /* somebody tried to setup an irq that failed to allocate! */
557         if (irq == NULL)
558                 panic("nexus_setup_intr: NULL irq resource!");
559
560         *cookiep = 0;
561         if (irq->r_flags & RF_SHAREABLE)
562                 icflags = 0;
563         else
564                 icflags = INTR_EXCL;
565
566         driver = device_get_driver(child);
567         switch (flags & INTR_TYPE_MASK) {
568         case INTR_TYPE_AV:
569         case INTR_TYPE_TTY:
570                 mask = &tty_imask;
571                 break;
572         case INTR_TYPE_BIO:
573                 mask = &bio_imask;
574                 break;
575         case INTR_TYPE_NET:
576                 mask = &net_imask;
577                 break;
578         case INTR_TYPE_CAM:
579                 mask = &cam_imask;
580                 break;
581         case INTR_TYPE_CLK:
582                 mask = 0;
583                 printf("nexus: Warning: do not know what imask to use for INTR_TYPE_CLK\n");
584                 break;
585         case INTR_TYPE_MISC:
586                 mask = 0;
587                 break;
588         default:
589                 panic("still using grody create_intr interface");
590         }
591         if (flags & INTR_FAST)
592                 icflags |= INTR_FAST;
593
594         /*
595          * We depend here on rman_activate_resource() being idempotent.
596          */
597         error = rman_activate_resource(irq);
598         if (error)
599                 return (error);
600
601         *cookiep = inthand_add(device_get_nameunit(child), irq->r_start,
602             ihand, arg, mask, icflags);
603         if (*cookiep == NULL)
604                 error = EINVAL; /* XXX ??? */
605
606         return (error);
607 }
608
609 static int
610 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
611 {
612         return (inthand_remove(ih));
613 }
614
615 static int
616 nexus_set_resource(device_t dev, device_t child, int type, int rid, u_long start, u_long count)
617 {
618         struct nexus_device     *ndev = DEVTONX(child);
619         struct resource_list    *rl = &ndev->nx_resources;
620
621         /* XXX this should return a success/failure indicator */
622         resource_list_add(rl, type, rid, start, start + count - 1, count);
623         return(0);
624 }
625
626 static int
627 nexus_get_resource(device_t dev, device_t child, int type, int rid, u_long *startp, u_long *countp)
628 {
629         struct nexus_device     *ndev = DEVTONX(child);
630         struct resource_list    *rl = &ndev->nx_resources;
631         struct resource_list_entry *rle;
632
633         rle = resource_list_find(rl, type, rid);
634         device_printf(child, "type %d  rid %d  startp %p  countp %p - got %p\n",
635                       type, rid, startp, countp, rle);
636         if (!rle)
637                 return(ENOENT);
638         if (startp)
639                 *startp = rle->start;
640         if (countp)
641                 *countp = rle->count;
642         return(0);
643 }
644
645 static void
646 nexus_delete_resource(device_t dev, device_t child, int type, int rid)
647 {
648         struct nexus_device     *ndev = DEVTONX(child);
649         struct resource_list    *rl = &ndev->nx_resources;
650
651         resource_list_delete(rl, type, rid);
652 }
653
654 /*
655  * Placeholder which claims PnP 'devices' which describe system
656  * resources.
657  */
658 static struct isa_pnp_id sysresource_ids[] = {
659         { 0x010cd041 /* PNP0c01 */, "System Memory" },
660         { 0x020cd041 /* PNP0c02 */, "System Resource" },
661         { 0 }
662 };
663
664 static int
665 sysresource_probe(device_t dev)
666 {
667         int     result;
668
669         if ((result = ISA_PNP_PROBE(device_get_parent(dev), dev, sysresource_ids)) >= 0) {
670                 device_quiet(dev);
671         }
672         return (result);
673 }
674
675 static int
676 sysresource_attach(device_t dev)
677 {
678         return (0);
679 }
680
681 static device_method_t sysresource_methods[] = {
682         /* Device interface */
683         DEVMETHOD(device_probe,         sysresource_probe),
684         DEVMETHOD(device_attach,        sysresource_attach),
685         DEVMETHOD(device_detach,        bus_generic_detach),
686         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
687         DEVMETHOD(device_suspend,       bus_generic_suspend),
688         DEVMETHOD(device_resume,        bus_generic_resume),
689         { 0, 0 }
690 };
691
692 static driver_t sysresource_driver = {
693         "sysresource",
694         sysresource_methods,
695         1,              /* no softc */
696 };
697
698 static devclass_t sysresource_devclass;
699
700 DRIVER_MODULE(sysresource, isa, sysresource_driver, sysresource_devclass, 0, 0);