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/mips/mips/mips_pic.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 (c) 2015 Alexander Kabaev
    3  * Copyright (c) 2006 Oleksandr Tymoshenko
    4  * Copyright (c) 2002-2004 Juli Mallett <jmallett@FreeBSD.org>
    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  *    without modification, immediately at the beginning of the file.
   13  * 2. The name of the author may not be used to endorse or promote products
   14  *    derived from this software without specific prior written permission.
   15  *
   16  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   17  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   19  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
   20  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   21  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   22  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   23  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   24  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   25  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   26  * SUCH DAMAGE.
   27  *
   28  */
   29 
   30 #include <sys/cdefs.h>
   31 __FBSDID("$FreeBSD: releng/11.0/sys/mips/mips/mips_pic.c 300149 2016-05-18 15:05:44Z andrew $");
   32 
   33 #include "opt_platform.h"
   34 #include "opt_hwpmc_hooks.h"
   35 
   36 #include <sys/param.h>
   37 #include <sys/systm.h>
   38 #include <sys/bus.h>
   39 #include <sys/kernel.h>
   40 #include <sys/ktr.h>
   41 #include <sys/module.h>
   42 #include <sys/malloc.h>
   43 #include <sys/rman.h>
   44 #include <sys/pcpu.h>
   45 #include <sys/proc.h>
   46 #include <sys/cpuset.h>
   47 #include <sys/lock.h>
   48 #include <sys/mutex.h>
   49 #include <sys/smp.h>
   50 #include <sys/sched.h>
   51 #include <sys/pmc.h>
   52 #include <sys/pmckern.h>
   53 
   54 #include <machine/bus.h>
   55 #include <machine/hwfunc.h>
   56 #include <machine/intr.h>
   57 #include <machine/smp.h>
   58 
   59 #ifdef FDT
   60 #include <dev/fdt/fdt_common.h>
   61 #include <dev/ofw/openfirm.h>
   62 #include <dev/ofw/ofw_bus.h>
   63 #include <dev/ofw/ofw_bus_subr.h>
   64 #endif
   65 
   66 #include "pic_if.h"
   67 
   68 #define NHARD_IRQS      6
   69 #define NSOFT_IRQS      2
   70 #define NREAL_IRQS      (NHARD_IRQS + NSOFT_IRQS)
   71 
   72 static int mips_pic_intr(void *);
   73 
   74 struct mips_pic_irqsrc {
   75         struct intr_irqsrc      isrc;
   76         struct resource         *res;
   77         u_int                   irq;
   78 };
   79 
   80 struct mips_pic_softc {
   81         device_t                        pic_dev;
   82         struct mips_pic_irqsrc          pic_irqs[NREAL_IRQS];
   83         struct rman                     pic_irq_rman;
   84         struct mtx                      mutex;
   85         uint32_t                        nirqs;
   86 };
   87 
   88 static struct mips_pic_softc *pic_sc;
   89 
   90 #define PIC_INTR_ISRC(sc, irq)          (&(sc)->pic_irqs[(irq)].isrc)
   91 
   92 #ifdef FDT
   93 static struct ofw_compat_data compat_data[] = {
   94         {"mti,cpu-interrupt-controller",        true},
   95         {NULL,                                  false}
   96 };
   97 #endif
   98 
   99 #ifndef FDT
  100 static void
  101 mips_pic_identify(driver_t *drv, device_t parent)
  102 {
  103 
  104         BUS_ADD_CHILD(parent, 0, "cpupic", 0);
  105 }
  106 #endif
  107 
  108 static int
  109 mips_pic_probe(device_t dev)
  110 {
  111 
  112 #ifdef FDT
  113         if (!ofw_bus_status_okay(dev))
  114                 return (ENXIO);
  115 
  116         if (!ofw_bus_search_compatible(dev, compat_data)->ocd_data)
  117                 return (ENXIO);
  118 #endif
  119         device_set_desc(dev, "MIPS32 Interrupt Controller");
  120         return (BUS_PROBE_DEFAULT);
  121 }
  122 
  123 static inline void
  124 pic_irq_unmask(struct mips_pic_softc *sc, u_int irq)
  125 {
  126 
  127         mips_wr_status(mips_rd_status() | ((1 << irq) << 8));
  128 }
  129 
  130 static inline void
  131 pic_irq_mask(struct mips_pic_softc *sc, u_int irq)
  132 {
  133 
  134         mips_wr_status(mips_rd_status() & ~((1 << irq) << 8));
  135 }
  136 
  137 static inline intptr_t
  138 pic_xref(device_t dev)
  139 {
  140 #ifdef FDT
  141         return (OF_xref_from_node(ofw_bus_get_node(dev)));
  142 #else
  143         return (0);
  144 #endif
  145 }
  146 
  147 static int
  148 mips_pic_register_isrcs(struct mips_pic_softc *sc)
  149 {
  150         int error;
  151         uint32_t irq, i, tmpirq;
  152         struct intr_irqsrc *isrc;
  153         char *name;
  154 
  155         for (irq = 0; irq < sc->nirqs; irq++) {
  156                 sc->pic_irqs[irq].irq = irq;
  157                 sc->pic_irqs[irq].res = rman_reserve_resource(&sc->pic_irq_rman,
  158                     irq, irq, 1, RF_ACTIVE, sc->pic_dev);
  159                 if (sc->pic_irqs[irq].res == NULL) {
  160                         device_printf(sc->pic_dev,
  161                             "%s failed to alloc resource for irq %u",
  162                             __func__, irq);
  163                         return (ENOMEM);
  164                 }
  165                 isrc = PIC_INTR_ISRC(sc, irq);
  166                 if (irq < NSOFT_IRQS) {
  167                         name = "sint";
  168                         tmpirq = irq;
  169                 } else {
  170                         name = "int";
  171                         tmpirq = irq - NSOFT_IRQS;
  172                 }
  173                 error = intr_isrc_register(isrc, sc->pic_dev, 0, "%s%u",
  174                     name, tmpirq);
  175                 if (error != 0) {
  176                         for (i = 0; i < irq; i++) {
  177                                 intr_isrc_deregister(PIC_INTR_ISRC(sc, i));
  178                         }
  179                         device_printf(sc->pic_dev, "%s failed", __func__);
  180                         return (error);
  181                 }
  182         }
  183 
  184         return (0);
  185 }
  186 
  187 static int
  188 mips_pic_attach(device_t dev)
  189 {
  190         struct          mips_pic_softc *sc;
  191         intptr_t        xref = pic_xref(dev);
  192 
  193         if (pic_sc)
  194                 return (ENXIO);
  195 
  196         sc = device_get_softc(dev);
  197 
  198         sc->pic_dev = dev;
  199         pic_sc = sc;
  200 
  201         /* Initialize mutex */
  202         mtx_init(&sc->mutex, "PIC lock", "", MTX_SPIN);
  203 
  204         /* Set the number of interrupts */
  205         sc->nirqs = nitems(sc->pic_irqs);
  206 
  207         /* Init the IRQ rman */
  208         sc->pic_irq_rman.rm_type = RMAN_ARRAY;
  209         sc->pic_irq_rman.rm_descr = "MIPS PIC IRQs";
  210         if (rman_init(&sc->pic_irq_rman) != 0 ||
  211             rman_manage_region(&sc->pic_irq_rman, 0, sc->nirqs - 1) != 0) {
  212                 device_printf(dev, "failed to setup IRQ rman\n");
  213                 goto cleanup;
  214         }
  215 
  216         /* Register the interrupts */
  217         if (mips_pic_register_isrcs(sc) != 0) {
  218                 device_printf(dev, "could not register PIC ISRCs\n");
  219                 goto cleanup;
  220         }
  221 
  222         /*
  223          * Now, when everything is initialized, it's right time to
  224          * register interrupt controller to interrupt framefork.
  225          */
  226         if (intr_pic_register(dev, xref) == NULL) {
  227                 device_printf(dev, "could not register PIC\n");
  228                 goto cleanup;
  229         }
  230 
  231         /* Claim our root controller role */
  232         if (intr_pic_claim_root(dev, xref, mips_pic_intr, sc, 0) != 0) {
  233                 device_printf(dev, "could not set PIC as a root\n");
  234                 intr_pic_deregister(dev, xref);
  235                 goto cleanup;
  236         }
  237 
  238         return (0);
  239 
  240 cleanup:
  241         return(ENXIO);
  242 }
  243 
  244 int
  245 mips_pic_intr(void *arg)
  246 {
  247         struct mips_pic_softc *sc = arg;
  248         register_t cause, status;
  249         int i, intr;
  250 
  251         cause = mips_rd_cause();
  252         status = mips_rd_status();
  253         intr = (cause & MIPS_INT_MASK) >> 8;
  254         /*
  255          * Do not handle masked interrupts. They were masked by
  256          * pre_ithread function (mips_mask_XXX_intr) and will be
  257          * unmasked once ithread is through with handler
  258          */
  259         intr &= (status & MIPS_INT_MASK) >> 8;
  260         while ((i = fls(intr)) != 0) {
  261                 i--; /* Get a 0-offset interrupt. */
  262                 intr &= ~(1 << i);
  263 
  264                 if (intr_isrc_dispatch(PIC_INTR_ISRC(sc, i),
  265                     curthread->td_intr_frame) != 0) {
  266                         device_printf(sc->pic_dev,
  267                             "Stray interrupt %u detected\n", i);
  268                         pic_irq_mask(sc, i);
  269                         continue;
  270                 }
  271         }
  272 
  273         KASSERT(i == 0, ("all interrupts handled"));
  274 
  275 #ifdef HWPMC_HOOKS
  276         if (pmc_hook && (PCPU_GET(curthread)->td_pflags & TDP_CALLCHAIN)) {
  277                 struct trapframe *tf = PCPU_GET(curthread)->td_intr_frame;
  278 
  279                 pmc_hook(PCPU_GET(curthread), PMC_FN_USER_CALLCHAIN, tf);
  280         }
  281 #endif
  282         return (FILTER_HANDLED);
  283 }
  284 
  285 static void
  286 mips_pic_disable_intr(device_t dev, struct intr_irqsrc *isrc)
  287 {
  288         u_int irq;
  289 
  290         irq = ((struct mips_pic_irqsrc *)isrc)->irq;
  291         pic_irq_mask(device_get_softc(dev), irq);
  292 }
  293 
  294 static void
  295 mips_pic_enable_intr(device_t dev, struct intr_irqsrc *isrc)
  296 {
  297         u_int irq;
  298 
  299         irq = ((struct mips_pic_irqsrc *)isrc)->irq;
  300         pic_irq_unmask(device_get_softc(dev), irq);
  301 }
  302 
  303 static int
  304 mips_pic_map_intr(device_t dev, struct intr_map_data *data,
  305     struct intr_irqsrc **isrcp)
  306 {
  307 #ifdef FDT
  308         struct intr_map_data_fdt *daf;
  309         struct mips_pic_softc *sc;
  310 
  311         if (data->type != INTR_MAP_DATA_FDT)
  312                 return (ENOTSUP);
  313 
  314         sc = device_get_softc(dev);
  315         daf = (struct intr_map_data_fdt *)data;
  316 
  317         if (daf->ncells != 1 || daf->cells[0] >= sc->nirqs)
  318                 return (EINVAL);
  319 
  320         *isrcp = PIC_INTR_ISRC(sc, daf->cells[0]);
  321         return (0);
  322 #else
  323         return (ENOTSUP);
  324 #endif
  325 }
  326 
  327 static void
  328 mips_pic_pre_ithread(device_t dev, struct intr_irqsrc *isrc)
  329 {
  330 
  331         mips_pic_disable_intr(dev, isrc);
  332 }
  333 
  334 static void
  335 mips_pic_post_ithread(device_t dev, struct intr_irqsrc *isrc)
  336 {
  337 
  338         mips_pic_enable_intr(dev, isrc);
  339 }
  340 
  341 static void
  342 mips_pic_post_filter(device_t dev, struct intr_irqsrc *isrc)
  343 {
  344 }
  345 
  346 static device_method_t mips_pic_methods[] = {
  347         /* Device interface */
  348 #ifndef FDT
  349         DEVMETHOD(device_identify,      mips_pic_identify),
  350 #endif
  351         DEVMETHOD(device_probe,         mips_pic_probe),
  352         DEVMETHOD(device_attach,        mips_pic_attach),
  353 
  354         /* Interrupt controller interface */
  355         DEVMETHOD(pic_disable_intr,     mips_pic_disable_intr),
  356         DEVMETHOD(pic_enable_intr,      mips_pic_enable_intr),
  357         DEVMETHOD(pic_map_intr,         mips_pic_map_intr),
  358         DEVMETHOD(pic_pre_ithread,      mips_pic_pre_ithread),
  359         DEVMETHOD(pic_post_ithread,     mips_pic_post_ithread),
  360         DEVMETHOD(pic_post_filter,      mips_pic_post_filter),
  361 
  362         { 0, 0 }
  363 };
  364 
  365 static driver_t mips_pic_driver = {
  366         "cpupic",
  367         mips_pic_methods,
  368         sizeof(struct mips_pic_softc),
  369 };
  370 
  371 static devclass_t mips_pic_devclass;
  372 
  373 #ifdef FDT
  374 EARLY_DRIVER_MODULE(cpupic, ofwbus, mips_pic_driver, mips_pic_devclass, 0, 0,
  375     BUS_PASS_INTERRUPT);
  376 #else
  377 EARLY_DRIVER_MODULE(cpupic, nexus, mips_pic_driver, mips_pic_devclass, 0, 0,
  378     BUS_PASS_INTERRUPT);
  379 #endif
  380 
  381 void
  382 cpu_init_interrupts(void)
  383 {
  384 }
  385 
  386 void
  387 cpu_establish_hardintr(const char *name, driver_filter_t *filt,
  388     void (*handler)(void*), void *arg, int irq, int flags, void **cookiep)
  389 {
  390         int res;
  391 
  392         /*
  393          * We have 6 levels, but thats 0 - 5 (not including 6)
  394          */
  395         if (irq < 0 || irq >= NHARD_IRQS)
  396                 panic("%s called for unknown hard intr %d", __func__, irq);
  397 
  398         KASSERT(pic_sc != NULL, ("%s: no pic", __func__));
  399 
  400         irq += NSOFT_IRQS;
  401         res = intr_setup_irq(pic_sc->pic_dev, pic_sc->pic_irqs[irq].res, filt,
  402             handler, arg, flags, cookiep);
  403         if (res != 0) panic("Unable to add hard IRQ %d handler", irq);
  404 }
  405 
  406 void
  407 cpu_establish_softintr(const char *name, driver_filter_t *filt,
  408     void (*handler)(void*), void *arg, int irq, int flags,
  409     void **cookiep)
  410 {
  411         int res;
  412 
  413         if (irq < 0 || irq > NSOFT_IRQS)
  414                 panic("%s called for unknown soft intr %d", __func__, irq);
  415 
  416         KASSERT(pic_sc != NULL, ("%s: no pic", __func__));
  417 
  418         res = intr_setup_irq(pic_sc->pic_dev, pic_sc->pic_irqs[irq].res, filt,
  419             handler, arg, flags, cookiep);
  420         if (res != 0) panic("Unable to add soft IRQ %d handler", irq);
  421 }
  422 

Cache object: fd418311b480c9b5287ac370a79e87ae


[ 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.