Merge branch 'vendor/GMP'
[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  */
31
32 /*
33  * This code implements a `root nexus' for Intel Architecture
34  * machines.  The function of the root nexus is to serve as an
35  * attachment point for both processors and buses, and to manage
36  * resources which are common to all of them.  In particular,
37  * this code implements the core resource managers for interrupt
38  * requests, DMA requests (which rightfully should be a part of the
39  * ISA code but it's easier to do it here for now), I/O port addresses,
40  * and I/O memory address space.
41  */
42
43 #include <sys/param.h>
44 #include <sys/systm.h>
45 #include <sys/bus.h>
46 #include <sys/kernel.h>
47 #include <sys/malloc.h>
48 #include <sys/module.h>
49 #include <sys/rman.h>
50 #include <sys/interrupt.h>
51 #include <sys/machintr.h>
52
53 #include <machine/vmparam.h>
54 #include <vm/vm.h>
55 #include <vm/pmap.h>
56 #include <machine/pmap.h>
57
58 #include <machine/nexusvar.h>
59 #include <machine/smp.h>
60 #include <machine_base/apic/mpapic.h>
61
62 #include <bus/pci/pcivar.h>
63 #include <bus/pci/pcireg.h>
64 #include <bus/pci/pcibus.h>
65 #include <bus/pci/pci_cfgreg.h>
66 #include <bus/pci/pcib_private.h>
67
68 #include "pcib_if.h"
69
70 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
71 struct nexus_device {
72         struct resource_list    nx_resources;
73         int                     nx_pcibus;
74 };
75
76 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
77
78 static struct rman irq_rman, drq_rman, port_rman, mem_rman;
79
80 static  int nexus_probe(device_t);
81 static  int nexus_attach(device_t);
82 static  int nexus_print_all_resources(device_t dev);
83 static  int nexus_print_child(device_t, device_t);
84 static device_t nexus_add_child(device_t bus, device_t parent, int order,
85                                 const char *name, int unit);
86 static  struct resource *nexus_alloc_resource(device_t, device_t, int, int *,
87                                               u_long, u_long, u_long, u_int);
88 static  int nexus_read_ivar(device_t, device_t, int, uintptr_t *);
89 static  int nexus_write_ivar(device_t, device_t, int, uintptr_t);
90 static  int nexus_activate_resource(device_t, device_t, int, int,
91                                     struct resource *);
92 static  int nexus_deactivate_resource(device_t, device_t, int, int,
93                                       struct resource *);
94 static  int nexus_release_resource(device_t, device_t, int, int,
95                                    struct resource *);
96 static  int nexus_config_intr(device_t, device_t, int, enum intr_trigger,
97                               enum intr_polarity);
98 static  int nexus_setup_intr(device_t, device_t, struct resource *, int flags,
99                              void (*)(void *), void *, 
100                              void **, lwkt_serialize_t);
101 static  int nexus_teardown_intr(device_t, device_t, struct resource *,
102                                 void *);
103 static  int nexus_set_resource(device_t, device_t, int, int, u_long, u_long);
104 static  int nexus_get_resource(device_t, device_t, int, int, u_long *, u_long *);
105 static void nexus_delete_resource(device_t, device_t, int, int);
106
107 /*
108  * The device_identify method will cause nexus to automatically associate
109  * and attach to the root bus.
110  */
111 static device_method_t nexus_methods[] = {
112         /* Device interface */
113         DEVMETHOD(device_identify,      bus_generic_identify),
114         DEVMETHOD(device_probe,         nexus_probe),
115         DEVMETHOD(device_attach,        nexus_attach),
116         DEVMETHOD(device_detach,        bus_generic_detach),
117         DEVMETHOD(device_shutdown,      bus_generic_shutdown),
118         DEVMETHOD(device_suspend,       bus_generic_suspend),
119         DEVMETHOD(device_resume,        bus_generic_resume),
120
121         /* Bus interface */
122         DEVMETHOD(bus_print_child,      nexus_print_child),
123         DEVMETHOD(bus_add_child,        nexus_add_child),
124         DEVMETHOD(bus_read_ivar,        nexus_read_ivar),
125         DEVMETHOD(bus_write_ivar,       nexus_write_ivar),
126         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
127         DEVMETHOD(bus_release_resource, nexus_release_resource),
128         DEVMETHOD(bus_activate_resource, nexus_activate_resource),
129         DEVMETHOD(bus_deactivate_resource, nexus_deactivate_resource),
130         DEVMETHOD(bus_config_intr,      nexus_config_intr),
131         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
132         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
133         DEVMETHOD(bus_set_resource,     nexus_set_resource),
134         DEVMETHOD(bus_get_resource,     nexus_get_resource),
135         DEVMETHOD(bus_delete_resource,  nexus_delete_resource),
136
137         { 0, 0 }
138 };
139
140 static driver_t nexus_driver = {
141         "nexus",
142         nexus_methods,
143         1,                      /* no softc */
144 };
145 static devclass_t nexus_devclass;
146
147 DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0);
148
149 static int
150 nexus_probe(device_t dev)
151 {
152         device_quiet(dev);      /* suppress attach message for neatness */
153
154         /*
155          * IRQ's are on the mainboard on old systems, but on the ISA part
156          * of PCI->ISA bridges.  There would be multiple sets of IRQs on
157          * multi-ISA-bus systems.  PCI interrupts are routed to the ISA
158          * component, so in a way, PCI can be a partial child of an ISA bus(!).
159          * APIC interrupts are global though.
160          * In the non-APIC case, disallow the use of IRQ 2.
161          */
162         irq_rman.rm_start = 0;
163         irq_rman.rm_type = RMAN_ARRAY;
164         irq_rman.rm_descr = "Interrupt request lines";
165
166 #if SMP /* APIC-IO */
167 if (apic_io_enable) {
168         irq_rman.rm_end = APIC_INTMAPSIZE - 1;
169         if (rman_init(&irq_rman)
170             || rman_manage_region(&irq_rman,
171                                   irq_rman.rm_start, irq_rman.rm_end))
172                 panic("nexus_probe irq_rman");
173 } else {
174 #endif
175         irq_rman.rm_end = 15;
176         if (rman_init(&irq_rman)
177             || rman_manage_region(&irq_rman, irq_rman.rm_start, 1)
178             || rman_manage_region(&irq_rman, 3, irq_rman.rm_end))
179                 panic("nexus_probe irq_rman");
180 #if SMP /* APIC-IO */
181 }
182 #endif
183         /*
184          * ISA DMA on PCI systems is implemented in the ISA part of each
185          * PCI->ISA bridge and the channels can be duplicated if there are
186          * multiple bridges.  (eg: laptops with docking stations)
187          */
188         drq_rman.rm_start = 0;
189         drq_rman.rm_end = 7;
190         drq_rman.rm_type = RMAN_ARRAY;
191         drq_rman.rm_descr = "DMA request lines";
192         /* XXX drq 0 not available on some machines */
193         if (rman_init(&drq_rman)
194             || rman_manage_region(&drq_rman,
195                                   drq_rman.rm_start, drq_rman.rm_end))
196                 panic("nexus_probe drq_rman");
197
198         /*
199          * However, IO ports and Memory truely are global at this level,
200          * as are APIC interrupts (however many IO APICS there turn out
201          * to be on large systems..)
202          */
203         port_rman.rm_start = 0;
204         port_rman.rm_end = 0xffff;
205         port_rman.rm_type = RMAN_ARRAY;
206         port_rman.rm_descr = "I/O ports";
207         if (rman_init(&port_rman)
208             || rman_manage_region(&port_rman, 0, 0xffff))
209                 panic("nexus_probe port_rman");
210
211         mem_rman.rm_start = 0;
212         mem_rman.rm_end = ~0u;
213         mem_rman.rm_type = RMAN_ARRAY;
214         mem_rman.rm_descr = "I/O memory addresses";
215         if (rman_init(&mem_rman)
216             || rman_manage_region(&mem_rman, 0, ~0))
217                 panic("nexus_probe mem_rman");
218
219         return bus_generic_probe(dev);
220 }
221
222 static int
223 nexus_attach(device_t dev)
224 {
225         device_t        child;
226
227         /*
228          * First, let our child driver's identify any child devices that
229          * they can find.  Once that is done attach any devices that we
230          * found.
231          */
232 #if 0 /* FUTURE */
233         bus_generic_probe(dev);
234 #endif
235         bus_generic_attach(dev);
236
237         /*
238          * And if we didn't see EISA or ISA on a pci bridge, create some
239          * connection points now so they show up "on motherboard".
240          */
241         if (!devclass_get_device(devclass_find("eisa"), 0)) {
242                 child = BUS_ADD_CHILD(dev, dev, 0, "eisa", 0);
243                 if (child == NULL)
244                         panic("nexus_attach eisa");
245                 device_probe_and_attach(child);
246         }
247         if (!devclass_get_device(devclass_find("isa"), 0)) {
248                 child = BUS_ADD_CHILD(dev, dev, 0, "isa", 0);
249                 if (child == NULL)
250                         panic("nexus_attach isa");
251                 device_probe_and_attach(child);
252         }
253
254         return 0;
255 }
256
257 static int
258 nexus_print_all_resources(device_t dev)
259 {
260         struct  nexus_device *ndev = DEVTONX(dev);
261         struct resource_list *rl = &ndev->nx_resources;
262         int retval = 0;
263
264         if (SLIST_FIRST(rl) || ndev->nx_pcibus != -1)
265                 retval += kprintf(" at");
266         
267         retval += resource_list_print_type(rl, "port", SYS_RES_IOPORT, "%#lx");
268         retval += resource_list_print_type(rl, "iomem", SYS_RES_MEMORY, "%#lx");
269         retval += resource_list_print_type(rl, "irq", SYS_RES_IRQ, "%ld");
270
271         return retval;
272 }
273
274 static int
275 nexus_print_child(device_t bus, device_t child)
276 {
277         struct  nexus_device *ndev = DEVTONX(child);
278         int retval = 0;
279
280         retval += bus_print_child_header(bus, child);
281         retval += nexus_print_all_resources(child);
282         if (ndev->nx_pcibus != -1)
283                 retval += kprintf(" pcibus %d", ndev->nx_pcibus);
284         retval += kprintf(" on motherboard\n");
285
286         return (retval);
287 }
288
289 static device_t
290 nexus_add_child(device_t bus, device_t parent, int order,
291                 const char *name, int unit)
292 {
293         device_t                child;
294         struct nexus_device     *ndev;
295
296         ndev = kmalloc(sizeof(struct nexus_device), M_NEXUSDEV, M_INTWAIT|M_ZERO);
297         if (!ndev)
298                 return(0);
299         resource_list_init(&ndev->nx_resources);
300         ndev->nx_pcibus = -1;
301
302         child = device_add_child_ordered(parent, order, name, unit); 
303
304         /* should we free this in nexus_child_detached? */
305         device_set_ivars(child, ndev);
306
307         return(child);
308 }
309
310 static int
311 nexus_read_ivar(device_t dev, device_t child, int which, uintptr_t *result)
312 {
313         struct nexus_device *ndev = DEVTONX(child);
314         
315         switch (which) {
316         case NEXUS_IVAR_PCIBUS:
317                 *result = ndev->nx_pcibus;
318                 break;
319         default:
320                 return ENOENT;
321         }
322         return 0;
323 }
324
325 static int
326 nexus_write_ivar(device_t dev, device_t child, int which, uintptr_t value)
327 {
328         struct nexus_device *ndev = DEVTONX(child);
329         
330         switch (which) {
331         case NEXUS_IVAR_PCIBUS:
332                 ndev->nx_pcibus = value;
333                 break;
334         default:
335                 return ENOENT;
336         }
337         return 0;
338 }
339
340 /*
341  * Allocate a resource on behalf of child.  NB: child is usually going to be a
342  * child of one of our descendants, not a direct child of nexus0.
343  * (Exceptions include npx.)
344  */
345 static struct resource *
346 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid,
347                      u_long start, u_long end, u_long count, u_int flags)
348 {
349         struct nexus_device *ndev = DEVTONX(child);
350         struct  resource *rv;
351         struct resource_list_entry *rle;
352         struct  rman *rm;
353         int needactivate = flags & RF_ACTIVE;
354
355         /*
356          * If this is an allocation of the "default" range for a given RID, and
357          * we know what the resources for this device are (ie. they aren't maintained
358          * by a child bus), then work out the start/end values.
359          */
360         if ((start == 0UL) && (end == ~0UL) && (count == 1)) {
361                 if (ndev == NULL)
362                         return(NULL);
363                 rle = resource_list_find(&ndev->nx_resources, type, *rid);
364                 if (rle == NULL)
365                         return(NULL);
366                 start = rle->start;
367                 end = rle->end;
368                 count = rle->count;
369         }
370
371         flags &= ~RF_ACTIVE;
372
373         switch (type) {
374         case SYS_RES_IRQ:
375                 rm = &irq_rman;
376                 break;
377
378         case SYS_RES_DRQ:
379                 rm = &drq_rman;
380                 break;
381
382         case SYS_RES_IOPORT:
383                 rm = &port_rman;
384                 break;
385
386         case SYS_RES_MEMORY:
387                 rm = &mem_rman;
388                 break;
389
390         default:
391                 return 0;
392         }
393
394         rv = rman_reserve_resource(rm, start, end, count, flags, child);
395         if (rv == 0)
396                 return 0;
397
398         if (type == SYS_RES_MEMORY) {
399                 rman_set_bustag(rv, I386_BUS_SPACE_MEM);
400         } else if (type == SYS_RES_IOPORT) {
401                 rman_set_bustag(rv, I386_BUS_SPACE_IO);
402                 rman_set_bushandle(rv, rv->r_start);
403         }
404
405         if (needactivate) {
406                 if (bus_activate_resource(child, type, *rid, rv)) {
407                         rman_release_resource(rv);
408                         return 0;
409                 }
410         }
411         
412         return rv;
413 }
414
415 static int
416 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
417                         struct resource *r)
418 {
419         /*
420          * If this is a memory resource, map it into the kernel.
421          */
422         if (rman_get_bustag(r) == I386_BUS_SPACE_MEM) {
423                 caddr_t vaddr = 0;
424
425                 if (rman_get_end(r) < 1024 * 1024) {
426                         /*
427                          * The first 1Mb is mapped at KERNBASE.
428                          */
429                         vaddr = (caddr_t)(uintptr_t)(KERNBASE + rman_get_start(r));
430                 } else {
431                         u_int32_t paddr;
432                         u_int32_t psize;
433                         u_int32_t poffs;
434
435                         paddr = rman_get_start(r);
436                         psize = rman_get_size(r);
437
438                         poffs = paddr - trunc_page(paddr);
439                         vaddr = (caddr_t) pmap_mapdev(paddr-poffs, psize+poffs) + poffs;
440                 }
441                 rman_set_virtual(r, vaddr);
442                 /* IBM-PC: the type of bus_space_handle_t is u_int */
443                 rman_set_bushandle(r, (bus_space_handle_t) vaddr);
444         }
445         return (rman_activate_resource(r));
446 }
447
448 static int
449 nexus_deactivate_resource(device_t bus, device_t child, int type, int rid,
450                           struct resource *r)
451 {
452         /*
453          * If this is a memory resource, unmap it.
454          */
455         if ((rman_get_bustag(r) == I386_BUS_SPACE_MEM) &&
456             (rman_get_end(r) >= 1024 * 1024)) {
457                 u_int32_t psize;
458
459                 psize = rman_get_size(r);
460                 pmap_unmapdev((vm_offset_t)rman_get_virtual(r), psize);
461         }
462                 
463         return (rman_deactivate_resource(r));
464 }
465
466 static int
467 nexus_release_resource(device_t bus, device_t child, int type, int rid,
468                        struct resource *r)
469 {
470         if (rman_get_flags(r) & RF_ACTIVE) {
471                 int error = bus_deactivate_resource(child, type, rid, r);
472                 if (error)
473                         return error;
474         }
475         return (rman_release_resource(r));
476 }
477
478 static int
479 nexus_config_intr(device_t bus, device_t chile, int irq,
480     enum intr_trigger trig, enum intr_polarity pola)
481 {
482         machintr_intr_config(irq, trig, pola);
483         return 0;
484 }
485
486 /*
487  * Currently this uses the really grody interface from kern/kern_intr.c
488  * (which really doesn't belong in kern/anything.c).  Eventually, all of
489  * the code in kern_intr.c and machdep_intr.c should get moved here, since
490  * this is going to be the official interface.
491  */
492 static int
493 nexus_setup_intr(device_t bus, device_t child, struct resource *irq,
494                  int flags, void (*ihand)(void *), void *arg,
495                  void **cookiep, lwkt_serialize_t serializer)
496 {
497         int     error, icflags;
498
499         /* somebody tried to setup an irq that failed to allocate! */
500         if (irq == NULL)
501                 panic("nexus_setup_intr: NULL irq resource!");
502
503         *cookiep = 0;
504         icflags = flags;
505         if ((irq->r_flags & RF_SHAREABLE) == 0)
506                 icflags |= INTR_EXCL;
507
508         /*
509          * We depend here on rman_activate_resource() being idempotent.
510          */
511         error = rman_activate_resource(irq);
512         if (error)
513                 return (error);
514
515         /*
516          * XXX cast the interrupt handler function to an inthand2_t.  The
517          * difference is that an additional frame argument is passed which
518          * we do not currently want to expose the BUS subsystem to.
519          */
520         *cookiep = register_int(irq->r_start, (inthand2_t *)ihand, arg,
521                                 device_get_nameunit(child), serializer,
522                                 icflags);
523         if (*cookiep == NULL)
524                 error = EINVAL;
525         return (error);
526 }
527
528 static int
529 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
530 {
531         if (ih) {
532                 unregister_int(ih);
533                 return (0);
534         }
535         return(-1);
536 }
537
538 static int
539 nexus_set_resource(device_t dev, device_t child, int type, int rid, u_long start, u_long count)
540 {
541         struct nexus_device     *ndev = DEVTONX(child);
542         struct resource_list    *rl = &ndev->nx_resources;
543
544         /* XXX this should return a success/failure indicator */
545         resource_list_add(rl, type, rid, start, start + count - 1, count);
546         return(0);
547 }
548
549 static int
550 nexus_get_resource(device_t dev, device_t child, int type, int rid, u_long *startp, u_long *countp)
551 {
552         struct nexus_device     *ndev = DEVTONX(child);
553         struct resource_list    *rl = &ndev->nx_resources;
554         struct resource_list_entry *rle;
555
556         rle = resource_list_find(rl, type, rid);
557         device_printf(child, "type %d  rid %d  startp %p  countp %p - got %p\n",
558                       type, rid, startp, countp, rle);
559         if (!rle)
560                 return(ENOENT);
561         if (startp)
562                 *startp = rle->start;
563         if (countp)
564                 *countp = rle->count;
565         return(0);
566 }
567
568 static void
569 nexus_delete_resource(device_t dev, device_t child, int type, int rid)
570 {
571         struct nexus_device     *ndev = DEVTONX(child);
572         struct resource_list    *rl = &ndev->nx_resources;
573
574         resource_list_delete(rl, type, rid);
575 }
576