The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/arm/arm/nexus.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    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 
   31 /*
   32  * This code implements a `root nexus' for Arm Architecture
   33  * machines.  The function of the root nexus is to serve as an
   34  * attachment point for both processors and buses, and to manage
   35  * resources which are common to all of them.  In particular,
   36  * this code implements the core resource managers for interrupt
   37  * requests, DMA requests (which rightfully should be a part of the
   38  * ISA code but it's easier to do it here for now), I/O port addresses,
   39  * and I/O memory address space.
   40  */
   41 
   42 #include <sys/cdefs.h>
   43 __FBSDID("$FreeBSD: releng/10.0/sys/arm/arm/nexus.c 238545 2012-07-17 03:18:12Z gonzo $");
   44 
   45 #include <sys/param.h>
   46 #include <sys/systm.h>
   47 #include <sys/bus.h>
   48 #include <sys/kernel.h>
   49 #include <sys/malloc.h>
   50 #include <sys/module.h>
   51 #include <machine/bus.h>
   52 #include <sys/rman.h>
   53 #include <sys/interrupt.h>
   54 
   55 #include <machine/vmparam.h>
   56 #include <machine/pcb.h>
   57 #include <vm/vm.h>
   58 #include <vm/pmap.h>
   59 #include <machine/pmap.h>
   60 
   61 #include <machine/resource.h>
   62 #include <machine/intr.h>
   63 
   64 static MALLOC_DEFINE(M_NEXUSDEV, "nexusdev", "Nexus device");
   65 
   66 struct nexus_device {
   67         struct resource_list    nx_resources;
   68 };
   69 
   70 #define DEVTONX(dev)    ((struct nexus_device *)device_get_ivars(dev))
   71 
   72 static struct rman mem_rman;
   73 
   74 static  int nexus_probe(device_t);
   75 static  int nexus_attach(device_t);
   76 static  int nexus_print_child(device_t, device_t);
   77 static  device_t nexus_add_child(device_t, u_int, const char *, int);
   78 static  struct resource *nexus_alloc_resource(device_t, device_t, int, int *,
   79     u_long, u_long, u_long, u_int);
   80 static  int nexus_activate_resource(device_t, device_t, int, int,
   81     struct resource *);
   82 static int nexus_setup_intr(device_t dev, device_t child, struct resource *res,
   83     int flags, driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep);
   84 static int nexus_teardown_intr(device_t, device_t, struct resource *, void *);
   85 
   86 static device_method_t nexus_methods[] = {
   87         /* Device interface */
   88         DEVMETHOD(device_probe,         nexus_probe),
   89         DEVMETHOD(device_attach,        nexus_attach),
   90         /* Bus interface */
   91         DEVMETHOD(bus_print_child,      nexus_print_child),
   92         DEVMETHOD(bus_add_child,        nexus_add_child),
   93         DEVMETHOD(bus_alloc_resource,   nexus_alloc_resource),
   94         DEVMETHOD(bus_activate_resource,        nexus_activate_resource),
   95         DEVMETHOD(bus_setup_intr,       nexus_setup_intr),
   96         DEVMETHOD(bus_teardown_intr,    nexus_teardown_intr),
   97         { 0, 0 }
   98 };
   99 
  100 static driver_t nexus_driver = {
  101         "nexus",
  102         nexus_methods,
  103         1                       /* no softc */
  104 };
  105 static devclass_t nexus_devclass;
  106 
  107 static int
  108 nexus_probe(device_t dev)
  109 {
  110 
  111         device_quiet(dev);      /* suppress attach message for neatness */
  112 
  113         return (BUS_PROBE_DEFAULT);
  114 }
  115 
  116 static int
  117 nexus_setup_intr(device_t dev, device_t child, struct resource *res, int flags,
  118     driver_filter_t *filt, driver_intr_t *intr, void *arg, void **cookiep)
  119 {
  120         int irq;
  121 
  122         if ((rman_get_flags(res) & RF_SHAREABLE) == 0)
  123                 flags |= INTR_EXCL;
  124 
  125         for (irq = rman_get_start(res); irq <= rman_get_end(res); irq++) {
  126                 arm_setup_irqhandler(device_get_nameunit(child),
  127                     filt, intr, arg, irq, flags, cookiep);
  128                 arm_unmask_irq(irq);
  129         }
  130         return (0);
  131 }
  132 
  133 static int
  134 nexus_teardown_intr(device_t dev, device_t child, struct resource *r, void *ih)
  135 {
  136 
  137         return (arm_remove_irqhandler(rman_get_start(r), ih));
  138 }
  139 
  140 static int
  141 nexus_attach(device_t dev)
  142 {
  143 
  144         mem_rman.rm_start = 0;
  145         mem_rman.rm_end = ~0ul;
  146         mem_rman.rm_type = RMAN_ARRAY;
  147         mem_rman.rm_descr = "I/O memory addresses";
  148         if (rman_init(&mem_rman) || rman_manage_region(&mem_rman, 0, ~0))
  149                 panic("nexus_probe mem_rman");
  150 
  151         /*
  152          * First, deal with the children we know about already
  153          */
  154         bus_generic_probe(dev);
  155         bus_generic_attach(dev);
  156 
  157         return (0);
  158 }
  159 
  160 
  161 static int
  162 nexus_print_child(device_t bus, device_t child)
  163 {
  164         int retval = 0;
  165 
  166         retval += bus_print_child_header(bus, child);
  167         retval += printf("\n");
  168 
  169         return (retval);
  170 }
  171 
  172 static device_t
  173 nexus_add_child(device_t bus, u_int order, const char *name, int unit)
  174 {
  175         device_t child;
  176         struct nexus_device *ndev;
  177 
  178         ndev = malloc(sizeof(struct nexus_device), M_NEXUSDEV, M_NOWAIT|M_ZERO);
  179         if (!ndev)
  180                 return (0);
  181         resource_list_init(&ndev->nx_resources);
  182 
  183         child = device_add_child_ordered(bus, order, name, unit);
  184 
  185         /* should we free this in nexus_child_detached? */
  186         device_set_ivars(child, ndev);
  187 
  188         return (child);
  189 }
  190 
  191 
  192 /*
  193  * Allocate a resource on behalf of child.  NB: child is usually going to be a
  194  * child of one of our descendants, not a direct child of nexus0.
  195  * (Exceptions include footbridge.)
  196  */
  197 #define ARM_BUS_SPACE_MEM 1
  198 static struct resource *
  199 nexus_alloc_resource(device_t bus, device_t child, int type, int *rid,
  200     u_long start, u_long end, u_long count, u_int flags)
  201 {
  202         struct resource *rv;
  203         struct rman *rm;
  204         int needactivate = flags & RF_ACTIVE;
  205 
  206         switch (type) {
  207         case SYS_RES_MEMORY:
  208                 rm = &mem_rman;
  209                 break;
  210 
  211         default:
  212                 return (0);
  213         }
  214 
  215         rv = rman_reserve_resource(rm, start, end, count, flags, child);
  216         if (rv == 0)
  217                 return (0);
  218 
  219         rman_set_rid(rv, *rid);
  220         rman_set_bustag(rv, (void*)ARM_BUS_SPACE_MEM);
  221         rman_set_bushandle(rv, rman_get_start(rv));
  222 
  223         if (needactivate) {
  224                 if (bus_activate_resource(child, type, *rid, rv)) {
  225                         rman_release_resource(rv);
  226                         return (0);
  227                 }
  228         }
  229 
  230         return (rv);
  231 }
  232 
  233 
  234 static int
  235 nexus_activate_resource(device_t bus, device_t child, int type, int rid,
  236     struct resource *r)
  237 {
  238         /*
  239          * If this is a memory resource, map it into the kernel.
  240          */
  241         if (rman_get_bustag(r) == (void*)ARM_BUS_SPACE_MEM) {
  242                 caddr_t vaddr = 0;
  243                 u_int32_t paddr;
  244                 u_int32_t psize;
  245                 u_int32_t poffs;
  246 
  247                 paddr = rman_get_start(r);
  248                 psize = rman_get_size(r);
  249                 poffs = paddr - trunc_page(paddr);
  250                 vaddr = (caddr_t) pmap_mapdev(paddr-poffs, psize+poffs) + poffs;
  251                 rman_set_virtual(r, vaddr);
  252                 rman_set_bushandle(r, (bus_space_handle_t) vaddr);
  253         }
  254         return (rman_activate_resource(r));
  255 }
  256 
  257 DRIVER_MODULE(nexus, root, nexus_driver, nexus_devclass, 0, 0);

Cache object: 4ff4d4ba294eed55d14db32e8526d934


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.